RoleStoreBase<TRole,TKey,TUserRole,TRoleClaim>.FindByNameAsync Method

Definition

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

public abstract System.Threading.Tasks.Task<TRole> FindByNameAsync (string normalizedName, System.Threading.CancellationToken cancellationToken = default);
public abstract System.Threading.Tasks.Task<TRole?> FindByNameAsync (string normalizedName, System.Threading.CancellationToken cancellationToken = default);
abstract member FindByNameAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'Role (requires 'Role :> Microsoft.AspNetCore.Identity.IdentityRole<'Key>)>
Public MustOverride Function FindByNameAsync (normalizedName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of TRole)

Parameters

normalizedName
String

The normalized role name 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.

Implements

Applies to