UserManager Constructors
Exposes API required to manage user objects in the database. Use Dependency Injection to access this class’s instance in a .NET 6+ application.Name | Parameters | Description |
---|---|---|
UserManager(IServiceProvider, IPrincipalProvider, IUserLockout, IOptions<SecurityOptions>) | serviceProvider, principalProvider, userLockout, securityOptions | Initializes a new instance of the UserManager class with specified settings. You do not need to call this constructor; it is called internally by the DI container. |
See Also