Class PasswordClientProperties
Represents client properties of a PasswordComponent.
public class PasswordClientProperties : FormComponentClientProperties<string>, IFormComponentClientProperties, IFormItemClientProperties
- Inheritance
-
objectFormComponentClientProperties<string>PasswordClientProperties
- Implements
- Inherited Members
- Extension Methods
Properties
IgnorePasswordPolicy
Gets or sets whether password policy is ignored.
public bool IgnorePasswordPolicy { get; set; }
Property Value
- bool
RequireDigit
Gets or sets whether the password requires a digit.
public bool RequireDigit { get; set; }
Property Value
- bool
RequireLowercase
Gets or sets whether the password requires an lowercase character.
public bool RequireLowercase { get; set; }
Property Value
- bool
RequireNonAlphanumeric
Gets or sets whether the password requires a nonalphanumeric character.
public bool RequireNonAlphanumeric { get; set; }
Property Value
- bool
RequireUppercase
Gets or sets whether the password requires an uppercase character.
public bool RequireUppercase { get; set; }
Property Value
- bool
RequiredLength
Gets or sets the required minimal length of the password.
public int RequiredLength { get; set; }
Property Value
- int
RequiredUniqueChars
Gets or sets the required amount of unique characters in the password.
public int RequiredUniqueChars { get; set; }
Property Value
- int