Skip to main content
All docs
V24.1
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

SignInManager Members

Exposes API required for user sign in. Use Dependency Injection to access this class’s instance in a .NET 6+ application.

Constructors

Name Description
SignInManager(ISecurityStrategyBase, INonSecuredObjectSpaceFactory, IStandardAuthenticationIdentityCreator, IServiceProvider, IPrincipalProvider) Initializes a new instance of the SignInManager class with specified settings. You do not need to call this constructor, it is called internally by the DI container.

Methods

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