UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.AddClaimsAsync Method

Definition

Adds the claims given to the specified user.

public abstract System.Threading.Tasks.Task AddClaimsAsync (TUser user, System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> claims, System.Threading.CancellationToken cancellationToken = default);
abstract member AddClaimsAsync : 'User * seq<System.Security.Claims.Claim> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public MustOverride Function AddClaimsAsync (user As TUser, claims As IEnumerable(Of Claim), Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

user
TUser

The user to add the claim to.

claims
IEnumerable<Claim>

The claim to add to the user.

cancellationToken
CancellationToken

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

Returns

The Task that represents the asynchronous operation.

Implements

Applies to