Table of Contents

Class PasswordComponentAttribute

Namespace
Kentico.Xperience.Admin.Base.FormAnnotations
Assembly
Kentico.Xperience.Admin.Base.Shared.dll

Indicates that the Password form component will be used for editing of this property value in the administration interface.

public class PasswordComponentAttribute : FormComponentAttribute
Inheritance
object
Attribute
PasswordComponentAttribute
Inherited Members
Extension Methods

Remarks

The underlying property must be of the type 'string'.

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