IUserRoleStore<TUser>.RemoveFromRoleAsync Method

Definition

Remove the specified user from the named role.

public:
 System::Threading::Tasks::Task ^ RemoveFromRoleAsync(TUser user, System::String ^ roleName, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task RemoveFromRoleAsync (TUser user, string roleName, System.Threading.CancellationToken cancellationToken);
abstract member RemoveFromRoleAsync : 'User * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function RemoveFromRoleAsync (user As TUser, roleName As String, cancellationToken As CancellationToken) As Task

Parameters

user
TUser

The user to remove the named role from.

roleName
String

The name of the role to remove.

cancellationToken
CancellationToken

The CancellationToken used to propagate notifications that the operation should be canceled.

Returns

The Task that represents the asynchronous operation.

Applies to