IUserRoleStore<TUser>.GetUsersInRoleAsync 方法

定义

返回作为命名角色成员的“用户”列表。

public:
 System::Threading::Tasks::Task<System::Collections::Generic::IList<TUser> ^> ^ GetUsersInRoleAsync(System::String ^ roleName, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<System.Collections.Generic.IList<TUser>> GetUsersInRoleAsync (string roleName, System.Threading.CancellationToken cancellationToken);
abstract member GetUsersInRoleAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<'User>>
Public Function GetUsersInRoleAsync (roleName As String, cancellationToken As CancellationToken) As Task(Of IList(Of TUser))

参数

roleName
String

应返回其成员身份的角色的名称。

cancellationToken
CancellationToken

CancellationToken,用于传播应取消操作的通知。

返回

Task<IList<TUser>>

表示 Task 异步操作的 ,其中包含具有命名角色的用户的列表。

适用于