Class ServerFailedValidationRule
Represents the result of a failed server-side validation.
public sealed class ServerFailedValidationRule : ValidationRule<object>, IValidationRule
- Inheritance
-
objectValidationRule<object>ServerFailedValidationRule
- Implements
- Inherited Members
- Extension Methods
Remarks
The rule is designed to be appended to the collection of validation rules of a form component after performing an explicit domain-specific validation. Its purpose is to transmit the error message to the client form.
Constructors
ServerFailedValidationRule(string)
Initializes a new instance of the ServerFailedValidationRule class using the validation error provided.
public ServerFailedValidationRule(string validationError)
Parameters
validationError
stringValidation error to initialize the rule with.
Methods
Validate(object, IFormFieldValueProvider)
Returns validation result with IsValid set to false and the error message.
public override Task<ValidationResult> Validate(object value, IFormFieldValueProvider formFieldValueProvider)
Parameters
value
objectformFieldValueProvider
IFormFieldValueProvider
Returns
- Task<ValidationResult>
Remarks
The rule is designed to be appended to the collection of validation rules of a form component after performing an explicit domain-specific validation. Its purpose is to transmit the error message to the client form. Inherently, this method is not evaluated by the system.