Back to Devexpress

ValidationState Enum

expressappframework-devexpress-dot-persistent-dot-validation-dbed6c9b.md

latest1.9 KB
Original Source

ValidationState Enum

Contains values that specify the possible states of a Validation Rule.

Namespace : DevExpress.Persistent.Validation

Assembly : DevExpress.Persistent.Base.v25.2.dll

NuGet Package : DevExpress.Persistent.Base

Declaration

csharp
public enum ValidationState
vb
Public Enum ValidationState

Members

NameDescription
Valid

Specifies that the validation rule has been checked and the current object satisfied it.

| | Invalid |

Specifies that the validation rule has been checked and the current object did not satisfy it.

| | Skipped |

Specifies that the validation rule has not been checked. This can be the case, for instance, when the validated property is not specified (see RuleBaseAttribute.SkipNullOrEmptyValues), or the validated object does not satisfy the specified TargetCriteria (see RuleBaseAttribute.TargetCriteria).

|

The following properties accept/return ValidationState values:

Remarks

These values are used to set the RuleValidationResult.State property.

See Also

DevExpress.Persistent.Validation Namespace