Condividi tramite


UserManager<TUser>.ResetPasswordAsync(TUser, String, String) Metodo

Definizione

Reimposta la userpassword dell'oggetto specificato newPassword dopo la convalida della reimpostazione tokendella 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.

Si applica a