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

 

Asynchronously removes the user login with the specified combination if it exists.

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

Syntax

Task RemoveLoginAsync(
    TUser user,
    UserLoginInfo login
)
Task^ RemoveLoginAsync(
    TUser user,
    UserLoginInfo^ login
)
abstract RemoveLoginAsync : 
        user:'TUser *
        login:UserLoginInfo -> Task
Function RemoveLoginAsync (
    user As TUser,
    login As UserLoginInfo
) As Task

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task

The task object representing the asynchronous operation.

See Also

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

Return to top