Show / Hide Table of Contents

Class SignInOptions

Options for controling sign-in.

Inheritance
Object
SignInOptions
Inherited Members
Object.Equals(Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: IRM.AspNetCore.Identity.UI
Assembly: IRM.AspNetCore.Identity.UI.dll
Syntax
public class SignInOptions

Fields

WindowsAuthenticationDisplayName

Declaration
public readonly string WindowsAuthenticationDisplayName
Field Value
String

WindowsAuthenticationProviderName

Declaration
public readonly string WindowsAuthenticationProviderName
Field Value
String

WindowsAuthenticationSchemes

Declaration
public readonly string[] WindowsAuthenticationSchemes
Field Value
String[]

Properties

AllowRememberBrowser

Gets or sets if the user are allowed to choose to remember their browser in 2FA. The default is true.

Declaration
public bool AllowRememberBrowser { get; set; }
Property Value
Boolean

AllowRememberSignIn

Gets or sets if the user are allowed to choose to remember their login. The default is true.

Declaration
public bool AllowRememberSignIn { get; set; }
Property Value
Boolean

AllowSelfInvitation

Gets or sets if an identified user is allowed to send an invitation mail to self. This will only be available for active users. The default is false.

Declaration
public bool AllowSelfInvitation { get; set; }
Property Value
Boolean

AutoRedirectToExternalAuthentication

Gets or sets if a user should be auto re-directed to external authentication if he/she only have that sign-in possibility.

Declaration
public bool AutoRedirectToExternalAuthentication { get; set; }
Property Value
Boolean

Remarks

When this property is set to true, the user will not be able to change to another user, since he/she is re-directed immediately.

ContactInformationText

Gets or sets contact information text displayed to users.

Declaration
public string ContactInformationText { get; set; }
Property Value
String

RequireLoginHintToMatchExistingUser

Gets or sets if a login hint must match an existing user or not.

Declaration
public bool RequireLoginHintToMatchExistingUser { get; set; }
Property Value
Boolean

WindowsAuthenticationEnabled

Gets or sets if windows authentication is enabled for login. The default is false.

Declaration
public bool WindowsAuthenticationEnabled { get; set; }
Property Value
Boolean

Back to top Generated by DocFX