Share via


UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim>.GetPasswordHashAsync Method (TUser)

 

Asynchronously gets the password hash for a user.

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

Syntax

public virtual Task<string> GetPasswordHashAsync(
    TUser user
)
public:
virtual Task<String^>^ GetPasswordHashAsync(
    TUser user
)
abstract GetPasswordHashAsync : 
        user:'TUser -> Task<string>
override GetPasswordHashAsync : 
        user:'TUser -> Task<string>
Public Overridable Function GetPasswordHashAsync (
    user As TUser
) As Task(Of String)

Parameters

  • user
    Type: TUser

    The user.

Return Value

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

The task representing the asynchronous operation.

Implements

IUserPasswordStore<TUser, TKey>.GetPasswordHashAsync(TUser)

See Also

UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim> Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity

Return to top