IUserLoginStore<TUser, TKey>.GetLoginsAsync Method (TUser)

 

Asynchronously returns the linked accounts for this user.

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

Syntax

Task<IList<UserLoginInfo>> GetLoginsAsync(
    TUser user
)
Task<IList<UserLoginInfo^>^>^ GetLoginsAsync(
    TUser user
)
abstract GetLoginsAsync : 
        user:'TUser -> Task<IList<UserLoginInfo>>
Function GetLoginsAsync (
    user As TUser
) As Task(Of IList(Of UserLoginInfo))

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task<IList<UserLoginInfo>>

The task object representing the asynchronous operation.

See Also

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

Return to top