IUserLoginStore<TUser>.FindByLoginAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索与指定的登录提供程序和登录提供程序密钥关联的用户。
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 包含用户(如果匹配指定的登录提供程序和密钥)。