1 type derived from UserLoginInfo
Microsoft.AspNetCore.Identity (1)
ExternalLoginInfo.cs (1)
12public class ExternalLoginInfo : UserLoginInfo
18 references to UserLoginInfo
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));