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

Definition

Adds a claim to a role.

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

Parameters

role
TRole

The role to add the claim to.

claim
Claim

The claim to add.

Returns

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

Applies to