UserManager<TUser>.UpdatePasswordHash(TUser, String, Boolean) 方法

定义

汇报用户的密码哈希。

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)

参数

user
TUser

用户。

newPassword
String

新密码。

validatePassword
Boolean

是否验证密码。

返回

密码是否已成功更新。

适用于