共用方式為


UserManager<TUser>.ValidatePasswordAsync(TUser, String) 方法

定義

如果驗證成功,則應該傳回 Success 。 這會在更新密碼雜湊之前呼叫。

protected:
 System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ ValidatePasswordAsync(TUser user, System::String ^ password);
protected System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> ValidatePasswordAsync (TUser user, string password);
protected System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> ValidatePasswordAsync (TUser user, string? password);
member this.ValidatePasswordAsync : 'User * string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Protected Function ValidatePasswordAsync (user As TUser, password As String) As Task(Of IdentityResult)

參數

user
TUser

使用者。

password
String

密碼。

傳回

IdentityResult 表示驗證是否成功。

適用於