IUserClaimStore<TUser, TKey>.GetClaimsAsync Method (TUser)
Returns the claims for the user with the issuer set.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
Task<IList<Claim>> GetClaimsAsync(
TUser user
)
Task<IList<Claim^>^>^ GetClaimsAsync(
TUser user
)
abstract GetClaimsAsync :
user:'TUser -> Task<IList<Claim>>
Function GetClaimsAsync (
user As TUser
) As Task(Of IList(Of Claim))
Parameters
user
Type: TUserThe user.
Return Value
Type: System.Threading.Tasks.Task<IList<Claim>>
The task object representing the asynchronous operation.
See Also
IUserClaimStore<TUser, TKey> Interface
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top