3 implementations of GetClaimsAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
336
public virtual async Task<IList<Claim>>
GetClaimsAsync
(TRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStore.cs (1)
126
public Task<IList<Claim>>
GetClaimsAsync
(TRole role, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
212
public abstract Task<IList<Claim>>
GetClaimsAsync
(TRole role, CancellationToken cancellationToken = default(CancellationToken));
1 reference to GetClaimsAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
366
return claimStore.
GetClaimsAsync
(role, CancellationToken);