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
Public method CreateAsync Insert a new user (Inherited from IUserStore<TUser>.)
Public method DeleteAsync Delete a user (Inherited from IUserStore<TUser>.)
Public method Dispose (Inherited from IDisposable.)
Public method FindByIdAsync Finds a user (Inherited from IUserStore<TUser>.)
Public method FindByNameAsync Find a user by name (Inherited from IUserStore<TUser>.)
Public method GetPasswordHashAsync Get the user password hash
Public method HasPasswordAsync Returns true if a user has a password set
Public method SetPasswordHashAsync Set the user password hash
Public method UpdateAsync Update a user (Inherited from IUserStore<TUser>.)

Top

See Also

Reference

Microsoft.AspNet.Identity Namespace