Interface IExternalLoginProvider
Assembly: Volo.Abp.Identity.Domain.dll
Syntax
public interface IExternalLoginProvider
Methods
CreateUserAsync(string, string)
Declaration
Task<IdentityUser> CreateUserAsync(string userName, string providerName)
Parameters
Returns
IsEnabledAsync()
Declaration
Task<bool> IsEnabledAsync()
Returns
TryAuthenticateAsync(string, string)
Declaration
Task<bool> TryAuthenticateAsync(string userName, string plainPassword)
Parameters
Returns
UpdateUserAsync(IdentityUser, string)
Declaration
Task UpdateUserAsync(IdentityUser user, string providerName)
Parameters
Returns
Extension Methods