1 type derived from UserLoginInfo
Microsoft.AspNetCore.Identity (1)
ExternalLoginInfo.cs (1)
12public class ExternalLoginInfo : UserLoginInfo
2 instantiations of UserLoginInfo
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
460.Select(l => new UserLoginInfo(l.LoginProvider, l.ProviderKey, l.ProviderDisplayName)).ToListAsync(cancellationToken);
UserStore.cs (1)
577.Select(l => new UserLoginInfo(l.LoginProvider, l.ProviderKey, l.ProviderDisplayName)).ToListAsync(cancellationToken);
30 references to UserLoginInfo
Microsoft.AspNetCore.Identity.EntityFrameworkCore (6)
UserOnlyStore.cs (3)
413public override Task AddLoginAsync(TUser user, UserLoginInfo login, 451/// The <see cref="Task"/> for the asynchronous operation, containing a list of <see cref="UserLoginInfo"/> for the specified <paramref name="user"/>, if any. 453public override async Task<IList<UserLoginInfo>> GetLoginsAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
UserStore.cs (3)
530public override Task AddLoginAsync(TUser user, UserLoginInfo login, 568/// The <see cref="Task"/> for the asynchronous operation, containing a list of <see cref="UserLoginInfo"/> for the specified <paramref name="user"/>, if any. 570public override async Task<IList<UserLoginInfo>> GetLoginsAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.UI (6)
_generated\17\ExternalLogins_cshtml.g.cs (1)
119foreach (var login in Model.CurrentLogins)
_generated\59\ExternalLogins_cshtml.g.cs (1)
119foreach (var login in Model.CurrentLogins)
Areas\Identity\Pages\V4\Account\Manage\DownloadPersonalData.cshtml.cs (1)
70foreach (var l in logins)
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (1)
22public IList<UserLoginInfo>? CurrentLogins { get; set; }
Areas\Identity\Pages\V5\Account\Manage\DownloadPersonalData.cshtml.cs (1)
70foreach (var l in logins)
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
22public IList<UserLoginInfo>? CurrentLogins { get; set; }
Microsoft.Extensions.Identity.Core (14)
IUserLoginStore.cs (5)
18/// Adds an external <see cref="UserLoginInfo"/> to the specified <paramref name="user"/>. 21/// <param name="login">The external <see cref="UserLoginInfo"/> to add to the specified <paramref name="user"/>.</param> 24Task AddLoginAsync(TUser user, UserLoginInfo login, CancellationToken cancellationToken); 43/// The <see cref="Task"/> for the asynchronous operation, containing a list of <see cref="UserLoginInfo"/> for the specified <paramref name="user"/>, if any. 45Task<IList<UserLoginInfo>> GetLoginsAsync(TUser user, CancellationToken cancellationToken);
UserLoginInfo.cs (3)
12/// Creates a new instance of <see cref="UserLoginInfo"/> 25/// Gets or sets the provider for this instance of <see cref="UserLoginInfo"/>. 27/// <value>The provider for the this instance of <see cref="UserLoginInfo"/></value>
UserManager.cs (6)
1110/// Adds an external <see cref="UserLoginInfo"/> to the specified <paramref name="user"/>. 1113/// <param name="login">The external <see cref="UserLoginInfo"/> to add to the specified <paramref name="user"/>.</param> 1118public virtual async Task<IdentityResult> AddLoginAsync(TUser user, UserLoginInfo login) 1134private async Task<IdentityResult> AddLoginCoreAsync(TUser user, UserLoginInfo login) 1156/// The <see cref="Task"/> for the asynchronous operation, containing a list of <see cref="UserLoginInfo"/> for the specified <paramref name="user"/>, if any. 1158public virtual async Task<IList<UserLoginInfo>> GetLoginsAsync(TUser user)
Microsoft.Extensions.Identity.Stores (4)
UserStoreBase.cs (4)
80protected virtual TUserLogin CreateUserLogin(TUser user, UserLoginInfo login) 395public abstract Task AddLoginAsync(TUser user, UserLoginInfo login, CancellationToken cancellationToken = default(CancellationToken)); 413/// The <see cref="Task"/> for the asynchronous operation, containing a list of <see cref="UserLoginInfo"/> for the specified <paramref name="user"/>, if any. 415public abstract Task<IList<UserLoginInfo>> GetLoginsAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken));