2 implementations of RemoveClaimAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
368
public virtual async Task
RemoveClaimAsync
(TRole role, Claim claim, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
230
public abstract Task
RemoveClaimAsync
(TRole role, Claim claim, CancellationToken cancellationToken = default(CancellationToken));
1 reference to RemoveClaimAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
349
await claimStore.
RemoveClaimAsync
(role, claim, CancellationToken).ConfigureAwait(false);