UserManager<TUser>.AddClaimAsync(TUser, Claim) Method

Definition

Adds the specified claim to the user.

public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> AddClaimAsync (TUser user, System.Security.Claims.Claim claim);

Parameters

user
TUser

The user 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