Table of Contents

Class PasswordValidationRule

Namespace
Kentico.Xperience.Admin.Base.Forms
Assembly
Kentico.Xperience.Admin.Base.dll

Validation rule designed for PasswordComponent.

public sealed class PasswordValidationRule : ValidationRule<string>, IValidationRule
Inheritance
object
PasswordValidationRule
Implements
Inherited Members
Extension Methods

Constructors

PasswordValidationRule(ILocalizationService, PasswordProperties)

Initializes a new instance of PasswordValidationRule.

public PasswordValidationRule(ILocalizationService localizationService, PasswordProperties properties)

Parameters

localizationService ILocalizationService
properties PasswordProperties

Properties

DefaultErrorMessage

Defines default error message of the validation rule.

protected override string DefaultErrorMessage { get; }

Property Value

string

Methods

Validate(string, IFormFieldValueProvider)

Validates value and returns the validation result.

public override Task<ValidationResult> Validate(string value, IFormFieldValueProvider formFieldValueProvider)

Parameters

value string

Value to be validated.

formFieldValueProvider IFormFieldValueProvider

Provider of values of other form fields for contextual validation.

Returns

Task<ValidationResult>

Returns validation result with IsValid set to true, if value is valid. Otherwise returns result with the flag set to false and a corresponding error message.