UserStore<TUser>.GetPasswordHashAsync Method

Get the password hash for a user

Namespace:  Microsoft.AspNet.Identity.EntityFramework
Assembly:  Microsoft.AspNet.Identity.EntityFramework (in Microsoft.AspNet.Identity.EntityFramework.dll)

Syntax

'Declaration
Public Function GetPasswordHashAsync ( _
    user As TUser _
) As Task(Of String)
'Usage
Dim instance As UserStore 
Dim user As TUser
Dim returnValue As Task(Of String)

returnValue = instance.GetPasswordHashAsync(user)
public Task<string> GetPasswordHashAsync(
    TUser user
)
public:
virtual Task<String^>^ GetPasswordHashAsync(
    TUser user
) sealed
abstract GetPasswordHashAsync : 
        user:'TUser -> Task<string> 
override GetPasswordHashAsync : 
        user:'TUser -> Task<string> 
public final function GetPasswordHashAsync(
    user : TUser
) : Task<String>

Parameters

Return Value

Type: System.Threading.Tasks.Task<String>

Implements

IUserPasswordStore<TUser>.GetPasswordHashAsync(TUser)

See Also

Reference

UserStore<TUser> Class

Microsoft.AspNet.Identity.EntityFramework Namespace