RoleStoreBase<TRole,TKey,TUserRole,TRoleClaim>.FindByIdAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Finds the role who has the specified ID as an asynchronous operation.
public abstract System.Threading.Tasks.Task<TRole> FindByIdAsync (string id, System.Threading.CancellationToken cancellationToken = default);
public abstract System.Threading.Tasks.Task<TRole?> FindByIdAsync (string id, System.Threading.CancellationToken cancellationToken = default);
abstract member FindByIdAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'Role (requires 'Role :> Microsoft.AspNetCore.Identity.IdentityRole<'Key>)>
Public MustOverride Function FindByIdAsync (id As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of TRole)
Parameters
- id
- String
The role ID to look for.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
Task<TRole>
A Task<TResult> that result of the look up.