IUserPasswordStore<TUser, TKey>.SetPasswordHashAsync Method (TUser, String)

 

Asynchronously sets the user password hash.

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

Syntax

Task SetPasswordHashAsync(
    TUser user,
    string passwordHash
)
Task^ SetPasswordHashAsync(
    TUser user,
    String^ passwordHash
)
abstract SetPasswordHashAsync : 
        user:'TUser *
        passwordHash:string -> Task
Function SetPasswordHashAsync (
    user As TUser,
    passwordHash As String
) As Task

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task

The task object representing the asynchronous operation.

See Also

IUserPasswordStore<TUser, TKey> Interface
Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top