1 implementation of GetLoginsAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
415public abstract Task<IList<UserLoginInfo>> GetLoginsAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken));
1 reference to GetLoginsAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
1163return await loginStore.GetLoginsAsync(user, CancellationToken).ConfigureAwait(false);