IUserClaimStore<TUser>.GetClaimsAsync(TUser, CancellationToken) Method

Definition

Gets a list of Claims to be belonging to the specified user as an asynchronous operation.

public:
 System::Threading::Tasks::Task<System::Collections::Generic::IList<System::Security::Claims::Claim ^> ^> ^ GetClaimsAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>> GetClaimsAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetClaimsAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>>
Public Function GetClaimsAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of IList(Of Claim))

Parameters

user
TUser

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.

Applies to