UserStore<TUser,TRole,TContext,TKey,TUserClaim,TUserRole,TUserLogin,TUserToken>.HasPasswordAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a flag indicating if the specified user has a password.
public virtual System.Threading.Tasks.Task<bool> HasPasswordAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
abstract member HasPasswordAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.HasPasswordAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function HasPasswordAsync (user As TUser, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Boolean)
Parameters
- user
- TUser
The user to retrieve the password hash for.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
A Task<TResult> containing a flag indicating if the specified user has a password. If the user has a password the returned value with be true, otherwise it will be false.