IRoleClaimStore<TRole>.GetClaimsAsync(TRole, 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.
Gets a list of Claims to be belonging to the specified role
as an asynchronous operation.
public System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>> GetClaimsAsync (TRole role, System.Threading.CancellationToken cancellationToken = default);
abstract member GetClaimsAsync : 'Role * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>>
Public Function GetClaimsAsync (role As TRole, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IList(Of Claim))
Parameters
- role
- TRole
The role whose claims to retrieve.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
A Task<TResult> that represents the result of the asynchronous query, a list of Claims.