UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.FindUserLoginAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
FindUserLoginAsync(String, String, CancellationToken) |
공급자가 있는 경우 providerKey를 사용하여 사용자 로그인을 반환합니다. |
FindUserLoginAsync(TKey, String, String, CancellationToken) |
일치하는 userId, provider, providerKey가 있는 경우 사용자 로그인을 반환합니다. |
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
공급자가 있는 경우 providerKey를 사용하여 사용자 로그인을 반환합니다.
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)
매개 변수
- loginProvider
- String
로그인 공급자 이름입니다.
- providerKey
- String
사용자를 식별하기 위해 에서 loginProvider
제공하는 키입니다.
- cancellationToken
- CancellationToken
작업을 취소해야 하는 알림을 전파하는 데 사용하는 CancellationToken입니다.
반환
Task<TUserLogin>
사용자가 있는 경우 로그인합니다.
적용 대상
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
일치하는 userId, provider, providerKey가 있는 경우 사용자 로그인을 반환합니다.
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)
매개 변수
- userId
- TKey
사용자의 ID입니다.
- loginProvider
- String
로그인 공급자 이름입니다.
- providerKey
- String
사용자를 식별하기 위해 에서 loginProvider
제공하는 키입니다.
- cancellationToken
- CancellationToken
작업을 취소해야 하는 알림을 전파하는 데 사용하는 CancellationToken입니다.
반환
Task<TUserLogin>
사용자가 있는 경우 로그인합니다.