IRoleStore<TRole> Interface

Definition

Provides an abstraction for a storage and management of roles.

generic <typename TRole>
 where TRole : classpublic interface class IRoleStore : IDisposable
public interface IRoleStore<TRole> : IDisposable where TRole : class
type IRoleStore<'Role (requires 'Role : null)> = interface
    interface IDisposable
Public Interface IRoleStore(Of TRole)
Implements IDisposable

Type Parameters

TRole

The type that represents a role.

Derived
Implements

Methods

CreateAsync(TRole, CancellationToken)

Creates a new role in a store as an asynchronous operation.

DeleteAsync(TRole, CancellationToken)

Deletes a role from the store as an asynchronous operation.

FindByIdAsync(String, CancellationToken)

Finds the role who has the specified ID as an asynchronous operation.

FindByNameAsync(String, CancellationToken)

Finds the role who has the specified normalized name as an asynchronous operation.

GetNormalizedRoleNameAsync(TRole, CancellationToken)

Get a role's normalized name as an asynchronous operation.

GetRoleIdAsync(TRole, CancellationToken)

Gets the ID for a role from the store as an asynchronous operation.

GetRoleNameAsync(TRole, CancellationToken)

Gets the name of a role from the store as an asynchronous operation.

SetNormalizedRoleNameAsync(TRole, String, CancellationToken)

Set a role's normalized name as an asynchronous operation.

SetRoleNameAsync(TRole, String, CancellationToken)

Sets the name of a role in the store as an asynchronous operation.

UpdateAsync(TRole, CancellationToken)

Updates a role in a store as an asynchronous operation.

Applies to