IQueryableRoleStore<TRole> Interface
Defines the members for a queryable role store.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
public interface IQueryableRoleStore<TRole> : IQueryableRoleStore<TRole, string>,
IRoleStore<TRole, string>, IDisposable
where TRole : object, IRole<string>
generic<typename TRole>
where TRole : Object, IRole<String^>
public interface class IQueryableRoleStore : IQueryableRoleStore<TRole, String^>,
IRoleStore<TRole, String^>, IDisposable
type IQueryableRoleStore<'TRole when 'TRole : Object and IRole<string>> =
interface
interface IQueryableRoleStore<'TRole, string>
interface IRoleStore<'TRole, string>
interface IDisposable
end
Public Interface IQueryableRoleStore(Of TRole As { Object, IRole(Of String) })
Inherits IQueryableRoleStore(Of TRole, String), IRoleStore(Of TRole, String),
IDisposable
Type Parameters
- TRole
The type of role.
Properties
Name | Description | |
---|---|---|
![]() |
Roles | Gets the IQueryable roles.(Inherited from IQueryableRoleStore<TRole, TKey>.) |
Methods
Name | Description | |
---|---|---|
![]() |
CreateAsync(TRole) | Asynchronously creates a new role.(Inherited from IRoleStore<TRole, TKey>.) |
![]() |
DeleteAsync(TRole) | Asynchronously deletes a role.(Inherited from IRoleStore<TRole, TKey>.) |
![]() |
Dispose() | (Inherited from IDisposable.) |
![]() |
FindByIdAsync(TKey) | Asynchronously finds a role by ID.(Inherited from IRoleStore<TRole, TKey>.) |
![]() |
FindByNameAsync(String) | Asynchronously finds a role by name.(Inherited from IRoleStore<TRole, TKey>.) |
![]() |
UpdateAsync(TRole) | Asynchronously updates a role.(Inherited from IRoleStore<TRole, TKey>.) |
See Also
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top