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

 

Asynchronously returns whether the user phone number is confirmed.

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

Syntax

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

Parameters

  • user
    Type: TUser

    The user.

Return Value

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

The task representing the asynchronous operation.

Implements

IUserPhoneNumberStore<TUser, TKey>.GetPhoneNumberConfirmedAsync(TUser)

See Also

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

Return to top