UserManager<TUser, TKey>.RemoveFromRoleAsync Method

Removes a user from a role.

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

Syntax

'Declaration
Public Overridable Function RemoveFromRoleAsync ( _
    userId As TKey, _
    role As String _
) As Task(Of IdentityResult)
'Usage
Dim instance As UserManager 
Dim userId As TKey
Dim role As String 
Dim returnValue As Task(Of IdentityResult)

returnValue = instance.RemoveFromRoleAsync(userId, _
    role)
public virtual Task<IdentityResult> RemoveFromRoleAsync(
    TKey userId,
    string role
)
public:
virtual Task<IdentityResult^>^ RemoveFromRoleAsync(
    TKey userId, 
    String^ role
)
abstract RemoveFromRoleAsync : 
        userId:'TKey * 
        role:string -> Task<IdentityResult> 
override RemoveFromRoleAsync : 
        userId:'TKey * 
        role:string -> Task<IdentityResult> 
public function RemoveFromRoleAsync(
    userId : TKey, 
    role : String
) : Task<IdentityResult>

Parameters

  • userId
    Type: TKey
    The user ID.

Return Value

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

See Also

Reference

UserManager<TUser, TKey> Class

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity