UserManager<TUser>.GetUsersInRoleAsync(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne une liste d’utilisateurs du magasin d’utilisateurs qui sont membres du spécifié 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))
Paramètres
- roleName
- String
Nom du rôle dont les utilisateurs doivent être retournés.
Retours
Task<TResult> qui représente le résultat de la requête asynchrone, une liste de TUser
membres du rôle spécifié.