1 implementation of ReplaceClaimAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
377public abstract Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, CancellationToken cancellationToken = default(CancellationToken));
1 reference to ReplaceClaimAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
1230await claimStore.ReplaceClaimAsync(user, claim, newClaim, CancellationToken).ConfigureAwait(false);