UserManager<TUser>.IsEmailConfirmedAsync(TUser) 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.
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.