3 implementations of AddClaimAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
351
public virtual Task
AddClaimAsync
(TRole role, Claim claim, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStore.cs (1)
132
public Task
AddClaimAsync
(TRole role, Claim claim, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
221
public abstract Task
AddClaimAsync
(TRole role, Claim claim, CancellationToken cancellationToken = default(CancellationToken));
1 reference to AddClaimAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
330
await claimStore.
AddClaimAsync
(role, claim, CancellationToken).ConfigureAwait(false);