Share via


IUserPhoneNumberStore<TUser, TKey>.GetPhoneNumberConfirmedAsync Method (TUser)

 

Asynchronously gets whether the user phone number is confirmed.

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

Syntax

Task<bool> GetPhoneNumberConfirmedAsync(
    TUser user
)
Task<bool>^ GetPhoneNumberConfirmedAsync(
    TUser user
)
abstract GetPhoneNumberConfirmedAsync : 
        user:'TUser -> Task<bool>
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 object representing the asynchronous operation.

See Also

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

Return to top