UserStore<TUser,TRole,TContext,TKey,TUserClaim,TUserRole,TUserLogin,TUserToken,TRoleClaim>.FindUserLoginAsync Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
FindUserLoginAsync(String, String, CancellationToken) |
Zwróć identyfikator logowania użytkownika z dostawcą, providerKey, jeśli istnieje. |
FindUserLoginAsync(TKey, String, String, CancellationToken) |
Zwróć identyfikator logowania użytkownika przy użyciu odpowiedniego identyfikatora userId, dostawcy, providerKey, jeśli istnieje. |
FindUserLoginAsync(String, String, CancellationToken)
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
Zwróć identyfikator logowania użytkownika z dostawcą, providerKey, jeśli istnieje.
protected:
override System::Threading::Tasks::Task<TUserLogin> ^ FindUserLoginAsync(System::String ^ loginProvider, System::String ^ providerKey, System::Threading::CancellationToken cancellationToken);
protected override System.Threading.Tasks.Task<TUserLogin> FindUserLoginAsync (string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
protected override System.Threading.Tasks.Task<TUserLogin?> FindUserLoginAsync (string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
override this.FindUserLoginAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'UserLogin (requires 'UserLogin :> Microsoft.AspNetCore.Identity.IdentityUserLogin<'Key> and 'UserLogin : (new : unit -> 'UserLogin))>
Protected Overrides Function FindUserLoginAsync (loginProvider As String, providerKey As String, cancellationToken As CancellationToken) As Task(Of TUserLogin)
Parametry
- loginProvider
- String
Nazwa dostawcy logowania.
- providerKey
- String
Klucz podany przez element loginProvider
w celu zidentyfikowania użytkownika.
- cancellationToken
- CancellationToken
Używane CancellationToken do propagacji powiadomień, że operacja powinna zostać anulowana.
Zwraca
Identyfikator logowania użytkownika, jeśli istnieje.
Dotyczy
FindUserLoginAsync(TKey, String, String, CancellationToken)
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
- Źródło:
- UserStore.cs
Zwróć identyfikator logowania użytkownika przy użyciu odpowiedniego identyfikatora userId, dostawcy, providerKey, jeśli istnieje.
protected:
override System::Threading::Tasks::Task<TUserLogin> ^ FindUserLoginAsync(TKey userId, System::String ^ loginProvider, System::String ^ providerKey, System::Threading::CancellationToken cancellationToken);
protected override System.Threading.Tasks.Task<TUserLogin> FindUserLoginAsync (TKey userId, string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
protected override System.Threading.Tasks.Task<TUserLogin?> FindUserLoginAsync (TKey userId, string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
override this.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 Overrides Function FindUserLoginAsync (userId As TKey, loginProvider As String, providerKey As String, cancellationToken As CancellationToken) As Task(Of TUserLogin)
Parametry
- userId
- TKey
Identyfikator użytkownika.
- loginProvider
- String
Nazwa dostawcy logowania.
- providerKey
- String
Klucz podany przez element loginProvider
w celu zidentyfikowania użytkownika.
- cancellationToken
- CancellationToken
Używane CancellationToken do propagacji powiadomień, że operacja powinna zostać anulowana.
Zwraca
Identyfikator logowania użytkownika, jeśli istnieje.