UserManager<TUser>.GetClaimsAsync(TUser) Method

Definition

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

public:
 virtual System::Threading::Tasks::Task<System::Collections::Generic::IList<System::Security::Claims::Claim ^> ^> ^ GetClaimsAsync(TUser user);
public virtual System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>> GetClaimsAsync (TUser user);
abstract member GetClaimsAsync : 'User -> System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>>
override this.GetClaimsAsync : 'User -> System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>>
Public Overridable Function GetClaimsAsync (user As TUser) As Task(Of IList(Of Claim))

Parameters

user
TUser

The user whose claims to retrieve.

Returns

A Task<TResult> that represents the result of the asynchronous query, a list of Claims.

Applies to