2 interfaces inheriting from IRoleStore
Microsoft.Extensions.Identity.Core (2)
IQueryableRoleStore.cs (1)
12
public interface IQueryableRoleStore<TRole> :
IRoleStore
<TRole> where TRole : class
IRoleClaimStore.cs (1)
15
public interface IRoleClaimStore<TRole> :
IRoleStore
<TRole> where TRole : class
5 references to IRoleStore
Microsoft.AspNetCore.Identity (1)
AspNetRoleManager.cs (1)
26
public AspNetRoleManager(
IRoleStore
<TRole> store,
Microsoft.Extensions.Identity.Core (4)
IdentityBuilder.cs (2)
236
/// Adds a <see cref="
IRoleStore
{TRole}"/> for the <see cref="RoleType"/>.
247
return AddScoped(typeof(
IRoleStore
<>).MakeGenericType(RoleType), typeof(TStore));
RoleManager.cs (2)
38
public RoleManager(
IRoleStore
<TRole> store,
63
protected
IRoleStore
<TRole> Store { get; private set; }