IUserLoginStore<TUser, TKey>.FindAsync Method

Asynchronously returns the user associated with this login.

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

Syntax

'Declaration
Function FindAsync ( _
    login As UserLoginInfo _
) As Task(Of TUser)
'Usage
Dim instance As IUserLoginStore 
Dim login As UserLoginInfo 
Dim returnValue As Task(Of TUser)

returnValue = instance.FindAsync(login)
Task<TUser> FindAsync(
    UserLoginInfo login
)
Task<TUser>^ FindAsync(
    UserLoginInfo^ login
)
abstract FindAsync : 
        login:UserLoginInfo -> Task<'TUser> 
function FindAsync(
    login : UserLoginInfo
) : Task<TUser>

Parameters

Return Value

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

See Also

Reference

IUserLoginStore<TUser, TKey> Interface

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity