Sdílet prostřednictvím


UserManager<TUser>.VerifyPasswordAsync Metoda

Definice

Vrátí hodnotu PasswordVerificationResult označující výsledek porovnání hodnoty hash hesla.

protected:
 virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::PasswordVerificationResult> ^ VerifyPasswordAsync(Microsoft::AspNetCore::Identity::IUserPasswordStore<TUser> ^ store, TUser user, System::String ^ password);
protected virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.PasswordVerificationResult> VerifyPasswordAsync (Microsoft.AspNetCore.Identity.IUserPasswordStore<TUser> store, TUser user, string password);
abstract member VerifyPasswordAsync : Microsoft.AspNetCore.Identity.IUserPasswordStore<'User (requires 'User : null)> * 'User * string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.PasswordVerificationResult>
override this.VerifyPasswordAsync : Microsoft.AspNetCore.Identity.IUserPasswordStore<'User (requires 'User : null)> * 'User * string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.PasswordVerificationResult>
Protected Overridable Function VerifyPasswordAsync (store As IUserPasswordStore(Of TUser), user As TUser, password As String) As Task(Of PasswordVerificationResult)

Parametry

store
IUserPasswordStore<TUser>

Úložiště obsahující heslo uživatele.

user
TUser

Uživatel, jehož heslo se má ověřit.

password
String

Heslo, které chcete ověřit.

Návraty

Objekt Task , který představuje asynchronní operaci obsahující PasswordVerificationResult operaci .

Platí pro