Table of Contents

Class ClientOnlyValidationRule<TProperties, TClientProperties>

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

Represents a base class for client-only validation rules.

public abstract class ClientOnlyValidationRule<TProperties, TClientProperties> : ValidationRule<TProperties, TClientProperties, object>, IValidationRule where TProperties : ValidationRuleProperties, new() where TClientProperties : ValidationRuleClientProperties, new()

Type Parameters

TProperties
TClientProperties
Inheritance
object
ValidationRule<TProperties, TClientProperties, object>
ClientOnlyValidationRule<TProperties, TClientProperties>
Implements
Inherited Members
Extension Methods

Remarks

Client-only validation rule is executed only on client-side.

Properties

ErrorMessage

Gets the error message.

protected abstract string ErrorMessage { get; }

Property Value

string

Methods

ConfigureClientProperties(TClientProperties)

Allows set validation rule client properties.

protected override Task ConfigureClientProperties(TClientProperties clientProperties)

Parameters

clientProperties TClientProperties

Current instance of client properties.

Returns

Task

Validate(object, IFormFieldValueProvider)

Implementation of abstract method that always returns a successful validation result.

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

Parameters

value object

Value.

formFieldValueProvider IFormFieldValueProvider

Form field value provider.

Returns

Task<ValidationResult>

Remarks

Method does no actual validation as the validation rule is executed only on client-side.