Share via


IUserEmailStore<TUser, TKey>.GetEmailConfirmedAsync Method (TUser)

 

Asynchronously returns true if the user email is confirmed.

Namespace:   Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Syntax

Task<bool> GetEmailConfirmedAsync(
    TUser user
)
Task<bool>^ GetEmailConfirmedAsync(
    TUser user
)
abstract GetEmailConfirmedAsync : 
        user:'TUser -> Task<bool>
Function GetEmailConfirmedAsync (
    user As TUser
) As Task(Of Boolean)

Parameters

  • user
    Type: TUser

    The user associated with the method.

Return Value

Type: System.Threading.Tasks.Task<Boolean>

The task object representing the asynchronous operation.

See Also

IUserEmailStore<TUser, TKey> Interface
Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top