IUserEmailStore<TUser, TKey>.FindByEmailAsync Method

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

'Declaration
Function FindByEmailAsync ( _
    email As String _
) As Task(Of TUser)
'Usage
Dim instance As IUserEmailStore 
Dim email As String 
Dim returnValue As Task(Of TUser)

returnValue = instance.FindByEmailAsync(email)
Task<TUser> FindByEmailAsync(
    string email
)
Task<TUser>^ FindByEmailAsync(
    String^ email
)
abstract FindByEmailAsync : 
        email:string -> Task<'TUser> 
function FindByEmailAsync(
    email : String
) : Task<TUser>

Parameters

Return Value

Type: System.Threading.Tasks.Task<TUser>
The task object representing the asynchronous operation.

See Also

Reference

IUserEmailStore<TUser, TKey> Interface

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity