IUserLoginStore<TUser>.GetLoginsAsync(TUser, CancellationToken) 方法

定义

检索指定 的关联登录名。

public:
 System::Threading::Tasks::Task<System::Collections::Generic::IList<Microsoft::AspNetCore::Identity::UserLoginInfo ^> ^> ^ GetLoginsAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.AspNetCore.Identity.UserLoginInfo>> GetLoginsAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetLoginsAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.AspNetCore.Identity.UserLoginInfo>>
Public Function GetLoginsAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of IList(Of UserLoginInfo))

参数

user
TUser

要检索其关联登录名的用户。

cancellationToken
CancellationToken

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

返回

异步操作的 ,Task包含指定 user的 的列表UserLoginInfo(如果有)。

适用于