IUserPasswordStore<TUser> Interface
Stores a user's password hash
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
'Declaration
Public Interface IUserPasswordStore(Of TUser As IUser) _
Inherits IUserStore(Of TUser), IDisposable
'Usage
Dim instance As IUserPasswordStore(Of TUser)
public interface IUserPasswordStore<TUser> : IUserStore<TUser>,
IDisposable
where TUser : IUser
generic<typename TUser>
where TUser : IUser
public interface class IUserPasswordStore : IUserStore<TUser>,
IDisposable
type IUserPasswordStore<'TUser when 'TUser : IUser> =
interface
interface IUserStore<'TUser>
interface IDisposable
end
JScript does not support generic types and methods.
Type Parameters
- TUser
The IUserPasswordStore<TUser> type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
CreateAsync | Insert a new user (Inherited from IUserStore<TUser>.) |
![]() |
DeleteAsync | Delete a user (Inherited from IUserStore<TUser>.) |
![]() |
Dispose | (Inherited from IDisposable.) |
![]() |
FindByIdAsync | Finds a user (Inherited from IUserStore<TUser>.) |
![]() |
FindByNameAsync | Find a user by name (Inherited from IUserStore<TUser>.) |
![]() |
GetPasswordHashAsync | Get the user password hash |
![]() |
HasPasswordAsync | Returns true if a user has a password set |
![]() |
SetPasswordHashAsync | Set the user password hash |
![]() |
UpdateAsync | Update a user (Inherited from IUserStore<TUser>.) |
Top