Compartilhar via


UserManager<TUser>.ValidatePasswordAsync(TUser, String) Método

Definição

Deve retornar Success se a validação for bem-sucedida. Isso é chamado antes de atualizar o hash de senha.

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)

Parâmetros

user
TUser

O usuário.

password
String

A senha.

Retornos

Um IdentityResult que representa se a validação foi bem-sucedida.

Aplica-se a