IRoleStore<TRole>.GetRoleNameAsync(TRole, CancellationToken) Method

Definition

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

public:
 System::Threading::Tasks::Task<System::String ^> ^ GetRoleNameAsync(TRole role, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string> GetRoleNameAsync (TRole role, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string?> GetRoleNameAsync (TRole role, System.Threading.CancellationToken cancellationToken);
abstract member GetRoleNameAsync : 'Role * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetRoleNameAsync (role As TRole, cancellationToken As CancellationToken) As Task(Of String)

Parameters

role
TRole

The role whose name should be returned.

cancellationToken
CancellationToken

The CancellationToken used to propagate notifications that the operation should be canceled.

Returns

A Task<TResult> that contains the name of the role.

Applies to