UserStore<TUser,TRole,TContext,TKey,TUserClaim,TUserRole,TUserLogin,TUserToken,TRoleClaim>.FindUserLoginAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
FindUserLoginAsync(String, String, CancellationToken) |
providerKey が存在する場合は、providerKey を使用してユーザー ログインを返します。 |
FindUserLoginAsync(TKey, String, String, CancellationToken) |
一致する userId、provider、providerKey が存在する場合は、ユーザー ログインを返します。 |
FindUserLoginAsync(String, String, CancellationToken)
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
providerKey が存在する場合は、providerKey を使用してユーザー ログインを返します。
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)
パラメーター
- loginProvider
- String
ログイン プロバイダー名。
- providerKey
- String
ユーザーを識別するために によって loginProvider
提供されるキー。
- cancellationToken
- CancellationToken
この操作を取り消す必要があることを示す通知を伝達するために使用する CancellationToken。
戻り値
Task<TUserLogin>
ユーザーが存在する場合はログインします。
適用対象
FindUserLoginAsync(TKey, String, String, CancellationToken)
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
- ソース:
- UserStore.cs
一致する userId、provider、providerKey が存在する場合は、ユーザー ログインを返します。
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)
パラメーター
- userId
- TKey
ユーザーの ID。
- loginProvider
- String
ログイン プロバイダー名。
- providerKey
- String
ユーザーを識別するために によって loginProvider
提供されるキー。
- cancellationToken
- CancellationToken
この操作を取り消す必要があることを示す通知を伝達するために使用する CancellationToken。
戻り値
Task<TUserLogin>
ユーザーが存在する場合はログインします。