Share via


UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim>.GetEmailConfirmedAsync Method (TUser)

 

Asynchronously returns whether the user email is confirmed.

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

Syntax

public virtual Task<bool> GetEmailConfirmedAsync(
    TUser user
)
public:
virtual Task<bool>^ GetEmailConfirmedAsync(
    TUser user
)
abstract GetEmailConfirmedAsync : 
        user:'TUser -> Task<bool>
override GetEmailConfirmedAsync : 
        user:'TUser -> Task<bool>
Public Overridable Function GetEmailConfirmedAsync (
    user As TUser
) As Task(Of Boolean)

Parameters

  • user
    Type: TUser

    The user.

Return Value

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

true if the user email is confirmed; otherwise, false.

Implements

IUserEmailStore<TUser, TKey>.GetEmailConfirmedAsync(TUser)

See Also

UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim> Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity

Return to top