UserManager<TUser>.ResetPasswordAsync(TUser, String, String) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Reimposta la user
password dell'oggetto specificato newPassword
dopo la convalida della reimpostazione token
della password specificata.
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)
Parametri
- user
- TUser
Utente la cui password deve essere reimpostata.
- token
- String
Token di reimpostazione della password da verificare.
- newPassword
- String
Nuova password da impostare se la verifica del token di reimpostazione ha esito positivo.
Restituisce
Oggetto Task che rappresenta l'operazione asincrona contenente l'oggetto IdentityResult dell'operazione.