2 implementations of ReplaceClaimAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
UserOnlyStore.cs (1)
369public override async Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, CancellationToken cancellationToken = default(CancellationToken))
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);