UserManager<TUser>.GetUsersForClaimAsync(Claim) 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.
Returns a list of users from the user store who have the specified claim
.
public:
virtual System::Threading::Tasks::Task<System::Collections::Generic::IList<TUser> ^> ^ GetUsersForClaimAsync(System::Security::Claims::Claim ^ claim);
public virtual System.Threading.Tasks.Task<System.Collections.Generic.IList<TUser>> GetUsersForClaimAsync (System.Security.Claims.Claim claim);
abstract member GetUsersForClaimAsync : System.Security.Claims.Claim -> System.Threading.Tasks.Task<System.Collections.Generic.IList<'User>>
override this.GetUsersForClaimAsync : System.Security.Claims.Claim -> System.Threading.Tasks.Task<System.Collections.Generic.IList<'User>>
Public Overridable Function GetUsersForClaimAsync (claim As Claim) As Task(Of IList(Of TUser))
Parameters
- claim
- Claim
The claim to look for.
Returns
A Task<TResult> that represents the result of the asynchronous query, a list of TUser
s who
have the specified claim.