UserManager<TUser>.GetUsersInRoleAsync(String) 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 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
A Task<TResult> that represents the result of the asynchronous query, a list of TUser
s who
are members of the specified role.