UserManager<TUser>.GetUsersInRoleAsync(String) Method

Definition

Returns a list of users from the user store who are members of the specified roleName.

public:
 virtual System::Threading::Tasks::Task<System::Collections::Generic::IList<TUser> ^> ^ GetUsersInRoleAsync(System::String ^ roleName);
public virtual System.Threading.Tasks.Task<System.Collections.Generic.IList<TUser>> GetUsersInRoleAsync (string roleName);
abstract member GetUsersInRoleAsync : string -> System.Threading.Tasks.Task<System.Collections.Generic.IList<'User>>
override this.GetUsersInRoleAsync : string -> System.Threading.Tasks.Task<System.Collections.Generic.IList<'User>>
Public Overridable Function GetUsersInRoleAsync (roleName As String) As Task(Of IList(Of TUser))

Parameters

roleName
String

The name of the role whose users should be returned.

Returns

Task<IList<TUser>>

A Task<TResult> that represents the result of the asynchronous query, a list of TUsers who are members of the specified role.

Applies to