UserManagerExtensions.RemoveFromRole<TUser, TKey> Method

Removes a user from a role.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function RemoveFromRole(Of TUser As {Class, Object, IUser(Of TKey)}, TKey As {Object, IEquatable(Of TKey)}) ( _
    manager As UserManager(Of TUser, TKey), _
    userId As TKey, _
    role As String _
) As IdentityResult
'Usage
Dim manager As UserManager(Of TUser, TKey)
Dim userId As TKey
Dim role As String 
Dim returnValue As IdentityResult 

returnValue = manager.RemoveFromRole(userId, _
    role)
public static IdentityResult RemoveFromRole<TUser, TKey>(
    this UserManager<TUser, TKey> manager,
    TKey userId,
    string role
)
where TUser : class, Object, IUser<TKey>
where TKey : Object, IEquatable<TKey>
[ExtensionAttribute]
public:
generic<typename TUser, typename TKey>
where TUser : ref class, Object, IUser<TKey>
where TKey : Object, IEquatable<TKey>
static IdentityResult^ RemoveFromRole(
    UserManager<TUser, TKey>^ manager, 
    TKey userId, 
    String^ role
)
static member RemoveFromRole : 
        manager:UserManager<'TUser, 'TKey> * 
        userId:'TKey * 
        role:string -> IdentityResult   when 'TUser : not struct and Object and IUser<'TKey> when 'TKey : Object and IEquatable<'TKey>
JScript does not support generic types and methods.

Type Parameters

  • TUser
    The type of the user.
  • TKey
    The type of the key.

Parameters

  • userId
    Type: TKey
    The user ID.

Return Value

Type: Microsoft.AspNet.Identity.IdentityResult
The result of the remove operation.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type UserManager<TUser, TKey>. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).

See Also

Reference

UserManagerExtensions Class

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity