UserManager<TUser>.GetUsersInRoleAsync(String) 方法

定义

从用户存储中返回用户的列表,这些用户是指定 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))

参数

roleName
String

应返回其用户的角色的名称。

返回

Task<IList<TUser>>

一个 Task<TResult> ,表示异步查询的结果,是指定角色成员的 列表 TUser

适用于