RoleManager<TRole>.RemoveClaimAsync(TRole, Claim) Method

Definition

Removes a claim from a role.

public:
 virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ RemoveClaimAsync(TRole role, System::Security::Claims::Claim ^ claim);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> RemoveClaimAsync (TRole role, System.Security.Claims.Claim claim);
abstract member RemoveClaimAsync : 'Role * System.Security.Claims.Claim -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.RemoveClaimAsync : 'Role * System.Security.Claims.Claim -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function RemoveClaimAsync (role As TRole, claim As Claim) As Task(Of IdentityResult)

Parameters

role
TRole

The role to remove the claim from.

claim
Claim

The claim to remove.

Returns

The Task that represents the asynchronous operation, containing the IdentityResult of the operation.

Applies to