SignInResult Class
Definition
An ActionResult that on execution invokes HttpContext.SignInAsync.
public ref class SignInResult : Microsoft::AspNetCore::Mvc::ActionResult
public class SignInResult : Microsoft.AspNetCore.Mvc.ActionResult
type SignInResult = class
inherit ActionResult
Public Class SignInResult
Inherits ActionResult
- Inheritance
Constructors
SignInResult(ClaimsPrincipal) |
Initializes a new instance of SignInResult with the default authentication scheme. |
SignInResult(ClaimsPrincipal, AuthenticationProperties) |
Initializes a new instance of SignInResult with the
default authentication scheme and |
SignInResult(String, ClaimsPrincipal) |
Initializes a new instance of SignInResult with the specified authentication scheme. |
SignInResult(String, ClaimsPrincipal, AuthenticationProperties) |
Initializes a new instance of SignInResult with the
specified authentication scheme and |
SignInResult(String, ClaimsPrincipal, AuthenticationProperties) |
Initializes a new instance of SignInResult with the
specified authentication scheme and |
Properties
AuthenticationScheme |
Gets or sets the authentication scheme that is used to perform the sign-in operation. |
Principal |
Gets or sets the ClaimsPrincipal containing the user claims. |
Properties |
Gets or sets the AuthenticationProperties used to perform the sign-in operation. |
Methods
ExecuteResult(ActionContext) |
Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method. (Inherited from ActionResult) |
ExecuteResultAsync(ActionContext) |