8 instantiations of SignInResult
Microsoft.AspNetCore.Mvc.Core (4)
ControllerBase.cs (4)
2445=> new SignInResult(principal); 2455=> new SignInResult(authenticationScheme, principal); 2467=> new SignInResult(principal, properties); 2482=> new SignInResult(authenticationScheme, principal, properties);
Microsoft.AspNetCore.Mvc.RazorPages (4)
PageBase.cs (2)
1107=> new SignInResult(authenticationScheme, principal); 1121=> new SignInResult(authenticationScheme, principal, properties);
PageModel.cs (2)
1459=> new SignInResult(authenticationScheme, principal); 1473=> new SignInResult(authenticationScheme, principal, properties);
30 references to SignInResult
Microsoft.AspNetCore.Mvc.Core (18)
ControllerBase.cs (12)
2439/// Creates a <see cref="SignInResult"/>. 2442/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 2444public virtual SignInResult SignIn(ClaimsPrincipal principal) 2448/// Creates a <see cref="SignInResult"/> with the specified authentication scheme. 2452/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 2454public virtual SignInResult SignIn(ClaimsPrincipal principal, string authenticationScheme) 2458/// Creates a <see cref="SignInResult"/> with <paramref name="properties"/>. 2462/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 2464public virtual SignInResult SignIn( 2470/// Creates a <see cref="SignInResult"/> with the specified authentication scheme and 2476/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 2478public virtual SignInResult SignIn(
SignInResult.cs (6)
17/// Initializes a new instance of <see cref="SignInResult"/> with the 27/// Initializes a new instance of <see cref="SignInResult"/> with the 38/// Initializes a new instance of <see cref="SignInResult"/> with the 49/// Initializes a new instance of <see cref="SignInResult"/> with the 84var logger = loggerFactory.CreateLogger(typeof(SignInResult)); 92[LoggerMessage(1, LogLevel.Information, $"Executing {nameof(SignInResult)} with authentication scheme ({{Scheme}}) and the following principal: {{Principal}}.", EventName = "SignInResultExecuting")]
Microsoft.AspNetCore.Mvc.RazorPages (12)
PageBase.cs (6)
1101/// Creates a <see cref="SignInResult"/> with the specified authentication scheme. 1105/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 1106public virtual SignInResult SignIn(ClaimsPrincipal principal, string authenticationScheme) 1110/// Creates a <see cref="SignInResult"/> with the specified authentication scheme and 1116/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 1117public virtual SignInResult SignIn(
PageModel.cs (6)
1453/// Creates a <see cref="SignInResult"/> with the specified authentication scheme. 1457/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 1458public virtual SignInResult SignIn(ClaimsPrincipal principal, string authenticationScheme) 1462/// Creates a <see cref="SignInResult"/> with the specified authentication scheme and 1468/// <returns>The created <see cref="SignInResult"/> for the response.</returns> 1469public virtual SignInResult SignIn(