IQueryableRoleStore<TRole, TKey> 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, in TKey> : IRoleStore<TRole, TKey>, 
    IDisposable
where TRole : object, IRole<TKey>
generic<typename TRole, typename TKey>
where TRole : Object, IRole<TKey>
public interface class IQueryableRoleStore : IRoleStore<TRole, TKey>, 
    IDisposable
type IQueryableRoleStore<'TRole, 'TKey when 'TRole : Object and IRole<'TKey>> = 
    interface
        interface IRoleStore<'TRole, 'TKey>
        interface IDisposable
    end
Public Interface IQueryableRoleStore(Of TRole As { Object, IRole(Of TKey) }, In TKey)
    Inherits IRoleStore(Of TRole, TKey), IDisposable

Type Parameters

  • TRole
    The type of role.
  • in TKey
    The type of the key.

Properties

Name Description
System_CAPS_pubproperty Roles

Gets the IQueryable roles.

Methods

Name Description
System_CAPS_pubmethod CreateAsync(TRole)

Asynchronously creates a new role.(Inherited from IRoleStore<TRole, TKey>.)

System_CAPS_pubmethod DeleteAsync(TRole)

Asynchronously deletes a role.(Inherited from IRoleStore<TRole, TKey>.)

System_CAPS_pubmethod Dispose()

(Inherited from IDisposable.)

System_CAPS_pubmethod FindByIdAsync(TKey)

Asynchronously finds a role by ID.(Inherited from IRoleStore<TRole, TKey>.)

System_CAPS_pubmethod FindByNameAsync(String)

Asynchronously finds a role by name.(Inherited from IRoleStore<TRole, TKey>.)

System_CAPS_pubmethod UpdateAsync(TRole)

Asynchronously updates a role.(Inherited from IRoleStore<TRole, TKey>.)

See Also

Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top