IUserPasswordStore<TUser>.GetPasswordHashAsync(TUser, CancellationToken) Method
Definition
Gets the password hash for the specified user
.
public:
System::Threading::Tasks::Task<System::String ^> ^ GetPasswordHashAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string> GetPasswordHashAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetPasswordHashAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetPasswordHashAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of String)
Parameters
- user
- TUser
The user whose password hash to retrieve.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The Task that represents the asynchronous operation, returning the password hash for the specified user
.