UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.GetUsersForClaimAsync(Claim, CancellationToken) Method
Definition
Retrieves all users with the specified claim.
public abstract System.Threading.Tasks.Task<System.Collections.Generic.IList<TUser>> GetUsersForClaimAsync (System.Security.Claims.Claim claim, System.Threading.CancellationToken cancellationToken = default);
abstract member GetUsersForClaimAsync : System.Security.Claims.Claim * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<'User>>
Public MustOverride Function GetUsersForClaimAsync (claim As Claim, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IList(Of TUser))
Parameters
- claim
- Claim
The claim whose users should be retrieved.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The Task contains a list of users, if any, that contain the specified claim.