UserStore<TUser,TRole,TContext,TKey,TUserClaim,TUserRole,TUserLogin,TUserToken,TRoleClaim>.GetEmailConfirmedAsync Method

Definition

Gets a flag indicating whether the email address for the specified user has been verified, true if the email address is verified otherwise false.

public virtual System.Threading.Tasks.Task<bool> GetEmailConfirmedAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
abstract member GetEmailConfirmedAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.GetEmailConfirmedAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function GetEmailConfirmedAsync (user As TUser, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Boolean)

Parameters

user
TUser

The user whose email confirmation status should be returned.

cancellationToken
CancellationToken

The CancellationToken used to propagate notifications that the operation should be canceled.

Returns

The task object containing the results of the asynchronous operation, a flag indicating whether the email address for the specified user has been confirmed or not.

Implements

Applies to