IUserLoginStore<TUser>.FindByLoginAsync 方法

定义

检索与指定的登录提供程序和登录提供程序密钥关联的用户。

public:
 System::Threading::Tasks::Task<TUser> ^ FindByLoginAsync(System::String ^ loginProvider, System::String ^ providerKey, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TUser> FindByLoginAsync (string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TUser?> FindByLoginAsync (string loginProvider, string providerKey, System.Threading.CancellationToken cancellationToken);
abstract member FindByLoginAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'User (requires 'User : null)>
Public Function FindByLoginAsync (loginProvider As String, providerKey As String, cancellationToken As CancellationToken) As Task(Of TUser)

参数

loginProvider
String

提供 的 providerKey登录提供程序。

providerKey
String

提供的 loginProvider 用于标识用户的密钥。

cancellationToken
CancellationToken

CancellationToken,用于传播应取消操作的通知。

返回

Task<TUser>

异步操作的 , Task 包含用户(如果匹配指定的登录提供程序和密钥)。

适用于