IUserLoginStore<TUser>.FindAsync Method

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>

See Also

Reference

IUserLoginStore<TUser> Interface

Microsoft.AspNet.Identity Namespace