UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.GetPasswordHashAsync 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.
Ottiene l'hash della password per un utente.
public virtual System.Threading.Tasks.Task<string> GetPasswordHashAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
public virtual System.Threading.Tasks.Task<string?> GetPasswordHashAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
abstract member GetPasswordHashAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
override this.GetPasswordHashAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Overridable Function GetPasswordHashAsync (user As TUser, Optional cancellationToken As CancellationToken = Nothing) As Task(Of String)
Parametri
- user
- TUser
L'utente per cui recuperare l'hash della password.
- cancellationToken
- CancellationToken
Oggetto CancellationToken usato per propagare le notifiche di richiesta di annullamento dell'operazione.
Restituisce
Oggetto Task<TResult> contenente l'hash delle password per l'utente.