UserManager<TUser>.CheckPasswordAsync(TUser, String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne un indicateur indiquant si le donné password
est valide pour le spécifié user
.
public:
virtual System::Threading::Tasks::Task<bool> ^ CheckPasswordAsync(TUser user, System::String ^ password);
public virtual System.Threading.Tasks.Task<bool> CheckPasswordAsync (TUser user, string password);
abstract member CheckPasswordAsync : 'User * string -> System.Threading.Tasks.Task<bool>
override this.CheckPasswordAsync : 'User * string -> System.Threading.Tasks.Task<bool>
Public Overridable Function CheckPasswordAsync (user As TUser, password As String) As Task(Of Boolean)
Paramètres
- user
- TUser
Utilisateur dont le mot de passe doit être validé.
- password
- String
Mot de passe à valider
Retours
Task qui représente l’opération asynchrone, contenant true si le spécifié correspond à l’un des magasins password
du user
, sinon false.