UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.FindUserLoginAsync 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.
Surcharges
FindUserLoginAsync(String, String, CancellationToken) |
Retourne une connexion d’utilisateur avec le fournisseur, providerKey s’il existe. |
FindUserLoginAsync(TKey, String, String, CancellationToken) |
Retourne une connexion utilisateur avec l’id d’utilisateur, le fournisseur et la clé providerKey correspondants s’il existe. |
FindUserLoginAsync(String, String, CancellationToken)
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
Retourne une connexion d’utilisateur avec le fournisseur, providerKey s’il existe.
protected:
abstract System::Threading::Tasks::Task<TUserLogin> ^ FindUserLoginAsync(System::String ^ loginProvider, System::String ^ providerKey, System::Threading::CancellationToken cancellationToken);
protected abstract System.Threading.Tasks.Task<TUserLogin> FindUserLoginAsync (string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
protected abstract System.Threading.Tasks.Task<TUserLogin?> FindUserLoginAsync (string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
abstract member FindUserLoginAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'UserLogin (requires 'UserLogin :> Microsoft.AspNetCore.Identity.IdentityUserLogin<'Key> and 'UserLogin : (new : unit -> 'UserLogin))>
Protected MustOverride Function FindUserLoginAsync (loginProvider As String, providerKey As String, cancellationToken As CancellationToken) As Task(Of TUserLogin)
Paramètres
- loginProvider
- String
Nom du fournisseur de connexion.
- providerKey
- String
Clé fournie par pour loginProvider
identifier un utilisateur.
- cancellationToken
- CancellationToken
CancellationToken utilisé pour propager les notifications indiquant que l’opération doit être annulée.
Retours
Connexion de l’utilisateur si elle existe.
S’applique à
FindUserLoginAsync(TKey, String, String, CancellationToken)
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
- Source:
- UserStoreBase.cs
Retourne une connexion utilisateur avec l’id d’utilisateur, le fournisseur et la clé providerKey correspondants s’il existe.
protected:
abstract System::Threading::Tasks::Task<TUserLogin> ^ FindUserLoginAsync(TKey userId, System::String ^ loginProvider, System::String ^ providerKey, System::Threading::CancellationToken cancellationToken);
protected abstract System.Threading.Tasks.Task<TUserLogin> FindUserLoginAsync (TKey userId, string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
protected abstract System.Threading.Tasks.Task<TUserLogin?> FindUserLoginAsync (TKey userId, string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
abstract member FindUserLoginAsync : 'Key * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'UserLogin (requires 'UserLogin :> Microsoft.AspNetCore.Identity.IdentityUserLogin<'Key> and 'UserLogin : (new : unit -> 'UserLogin))>
Protected MustOverride Function FindUserLoginAsync (userId As TKey, loginProvider As String, providerKey As String, cancellationToken As CancellationToken) As Task(Of TUserLogin)
Paramètres
- userId
- TKey
ID de l’utilisateur.
- loginProvider
- String
Nom du fournisseur de connexion.
- providerKey
- String
Clé fournie par pour loginProvider
identifier un utilisateur.
- cancellationToken
- CancellationToken
CancellationToken utilisé pour propager les notifications indiquant que l’opération doit être annulée.
Retours
Connexion de l’utilisateur si elle existe.