Class SignInAlternatives
Represents which sing-in alternatives that should be enabled for a user or a list of users.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: IRM.AspNetCore.Identity
Assembly: IRM.AspNetCore.Identity.dll
Syntax
public class SignInAlternatives
Constructors
SignInAlternatives()
Properties
EnableLocalLogin
Gets or sets if local logins is a alternative for sign-in.
Declaration
public bool EnableLocalLogin { get; set; }
Property Value
|
Boolean
|
ExternalProviders
Gets or sets external providers that are alternatives for sign-in.
Declaration
public List<ExternalProvider> ExternalProviders { get; set; }
Property Value
|
List<ExternalProvider>
|
HasAnySignInAlternative
Gets if this instnace offer any sign-in alternatives.
Declaration
public bool HasAnySignInAlternative { get; }
Property Value
|
Boolean
|