IUserLoginStore<TUser, TKey>.FindAsync Method (UserLoginInfo)

 

Asynchronously returns the user associated with this login.

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

Syntax

Task<TUser> FindAsync(
    UserLoginInfo login
)
Task<TUser>^ FindAsync(
    UserLoginInfo^ login
)
abstract FindAsync : 
        login:UserLoginInfo -> Task<'TUser>
Function FindAsync (
    login As UserLoginInfo
) As Task(Of TUser)

Parameters

Return Value

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

The task object representing the asynchronous operation.

See Also

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

Return to top