RoleStoreBase<TRole,TKey,TUserRole,TRoleClaim>.FindByIdAsync 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.
Recherche le rôle qui a l’ID spécifié en tant qu’opération asynchrone.
public abstract System.Threading.Tasks.Task<TRole> FindByIdAsync (string id, System.Threading.CancellationToken cancellationToken = default);
public abstract System.Threading.Tasks.Task<TRole?> FindByIdAsync (string id, System.Threading.CancellationToken cancellationToken = default);
abstract member FindByIdAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'Role (requires 'Role :> Microsoft.AspNetCore.Identity.IdentityRole<'Key>)>
Public MustOverride Function FindByIdAsync (id As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of TRole)
Paramètres
- id
- String
ID de rôle à rechercher.
- cancellationToken
- CancellationToken
CancellationToken utilisé pour propager les notifications indiquant que l’opération doit être annulée.
Retours
Task<TRole>
Task<TResult> qui résulte de la recherche vers le haut.