Class PasswordProperties
Represents properties of the PasswordComponent
public class PasswordProperties : FormComponentProperties, IFormComponentProperties
- Inheritance
-
objectPasswordProperties
- Implements
- Inherited Members
- Extension Methods
Properties
IgnorePasswordPolicy
Represents whether the password policy is ignored.
public bool IgnorePasswordPolicy { get; set; }
Property Value
- bool
Remarks
Default value is false
.
RequireDigit
Represents whether the password requires a digit..
public bool RequireDigit { get; set; }
Property Value
- bool
RequireLowercase
Represents whether the password requires an lowercase character.
public bool RequireLowercase { get; set; }
Property Value
- bool
RequireNonAlphanumeric
Represents whether the password requires a nonalphanumeric character.
public bool RequireNonAlphanumeric { get; set; }
Property Value
- bool
RequireUppercase
Represents whether the password requires an uppercase character.
public bool RequireUppercase { get; set; }
Property Value
- bool
RequiredLength
Minimal required amount of digits in the password.
public int RequiredLength { get; set; }
Property Value
- int
RequiredUniqueChars
Minimal required amount of unique characters in the password.
public int RequiredUniqueChars { get; set; }
Property Value
- int