IRoleStore<TRole>.FindByNameAsync(String, CancellationToken) 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 normalized name as an asynchronous operation.
public:
System::Threading::Tasks::Task<TRole> ^ FindByNameAsync(System::String ^ normalizedRoleName, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TRole> FindByNameAsync (string normalizedRoleName, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TRole?> FindByNameAsync (string normalizedRoleName, System.Threading.CancellationToken cancellationToken);
abstract member FindByNameAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'Role (requires 'Role : null)>
Public Function FindByNameAsync (normalizedRoleName As String, cancellationToken As CancellationToken) As Task(Of TRole)
Parameters
- normalizedRoleName
- 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.