Share via


IUserEmailStore<TUser, TKey>.FindByEmailAsync Method (String)

 

Asynchronously returns the user associated with this e-mail.

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

Syntax

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

Parameters

Return Value

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

The task object representing the asynchronous operation.

See Also

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

Return to top