UserManager<TUser>.UpdatePasswordHash(TUser, String, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.