UserManager<TUser>.ResetPasswordAsync(TUser, String, 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.
Réinitialise le user
mot de passe du spécifié newPassword
après avoir validé la réinitialisation token
de mot de passe donnée.
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ ResetPasswordAsync(TUser user, System::String ^ token, System::String ^ newPassword);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> ResetPasswordAsync (TUser user, string token, string newPassword);
abstract member ResetPasswordAsync : 'User * string * string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.ResetPasswordAsync : 'User * string * string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function ResetPasswordAsync (user As TUser, token As String, newPassword As String) As Task(Of IdentityResult)
Paramètres
- user
- TUser
Utilisateur dont le mot de passe doit être réinitialisé.
- token
- String
Jeton de réinitialisation de mot de passe à vérifier.
- newPassword
- String
Nouveau mot de passe à définir si la vérification du jeton de réinitialisation réussit.
Retours
Task qui représente l’opération asynchrone, contenant le IdentityResult de l’opération.