IUserEmailStore<TUser>.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:
 System::Threading::Tasks::Task<bool> ^ GetEmailConfirmedAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<bool> GetEmailConfirmedAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetEmailConfirmedAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Function GetEmailConfirmedAsync (user As TUser, cancellationToken As CancellationToken) 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.

Applies to