SignInManager Methods
Exposes API required for user sign in. Use Dependency Injection to access this class’s instance in an application.| Name | Description |
|---|---|
| AuthenticateByLogonParameters(Object) | Authenticates a user based on the specified logon parameters. |
| CreateUserPrincipal(ISecurityUser, IEnumerable<Claim>) | Creates a ClaimsPrincipal object for the specified user. |
| CreateUserPrincipal(String) | Creates a ClaimsPrincipal object based on a user’s authentication token. |
| Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
| Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
| GetHashCode() | Serves as the default hash function. Inherited from Object. |
| GetType() | Gets the Type of the current instance. Inherited from Object. |
| MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
| ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
| SignIn(ISecurityUser) | Signs in the specified user. |
| SignInByLogonParameters(Object) | Signs in a user based on the specified user logon parameters. |
| SignInByPassword(String, String) | Signs in a user based on the specified user name and password. |
| SignInByPrincipal(ClaimsPrincipal) | Signs in a user based on the specified claims principal. |
| ToString() | Returns a string that represents the current object. Inherited from Object. |
See Also