Show / Hide Table of Contents

Class TenantUserOptions

Specifies user options per tenant.

Inheritance
Object
TenantUserOptions
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
Assembly: IRM.AspNetCore.Identity.dll
Syntax
public class TenantUserOptions

Properties

DefaultPhoneNumberCountryCode

Gets or set the default country code to use then a phone number is entered without numeric country code, eg +46.

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

DisplayEmail

Gets or sets a value indicating if email should be displayed.

Declaration
public bool? DisplayEmail { get; set; }
Property Value
System.Nullable<Boolean>

DisplayPhoneNumber

Gets or sets a value indicating if phone number should be displayed.

Declaration
public bool? DisplayPhoneNumber { get; set; }
Property Value
System.Nullable<Boolean>

RequireEmail

Gets or sets a value indicating if email is required.

Declaration
public bool? RequireEmail { get; set; }
Property Value
System.Nullable<Boolean>

RequirePhoneNumber

Gets or sets a value indicating if phonenumber is required.

Declaration
public bool? RequirePhoneNumber { get; set; }
Property Value
System.Nullable<Boolean>

RequireUniqueEmail

Gets or sets a flag indicating whether the application requires unique emails for its users.

Declaration
public bool? RequireUniqueEmail { get; set; }
Property Value
System.Nullable<Boolean>

UsernameKind

Gets or sets the kind of username to user.

Declaration
public UsernameKind? UsernameKind { get; set; }
Property Value
System.Nullable<UsernameKind>

Back to top Generated by DocFX