UserManager<TUser>.UpdatePasswordHash(TUser, String, Boolean) Method

Definition

Updates a user's password hash.

protected:
 virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ UpdatePasswordHash(TUser user, System::String ^ newPassword, bool validatePassword);
protected virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> UpdatePasswordHash (TUser user, string newPassword, bool validatePassword);
abstract member UpdatePasswordHash : 'User * string * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.UpdatePasswordHash : 'User * string * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Protected Overridable Function UpdatePasswordHash (user As TUser, newPassword As String, validatePassword As Boolean) As Task(Of IdentityResult)

Parameters

user
TUser

The user.

newPassword
String

The new password.

validatePassword
Boolean

Whether to validate the password.

Returns

Whether the password has was successfully updated.

Applies to