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

 

Asynchronously gets the user e-mail.

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

Syntax

Task<string> GetEmailAsync(
    TUser user
)
Task<String^>^ GetEmailAsync(
    TUser user
)
abstract GetEmailAsync : 
        user:'TUser -> Task<string>
Function GetEmailAsync (
    user As TUser
) As Task(Of String)

Parameters

  • user
    Type: TUser

    The user where the e-mail will be retrieved.

Return Value

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

The task object representing the asynchronous operation.

See Also

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

Return to top