UserManager<TUser>.IsEmailConfirmedAsync(TUser) 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> ^ IsEmailConfirmedAsync(TUser user);
public virtual System.Threading.Tasks.Task<bool> IsEmailConfirmedAsync (TUser user);
abstract member IsEmailConfirmedAsync : 'User -> System.Threading.Tasks.Task<bool>
override this.IsEmailConfirmedAsync : 'User -> System.Threading.Tasks.Task<bool>
Public Overridable Function IsEmailConfirmedAsync (user As TUser) As Task(Of Boolean)

Parameters

user
TUser

The user whose email confirmation status should be returned.

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