[This is preliminary documentation and is subject to change.]

Describes the type of Validation to be performed against a particular data field.

Namespace: QPulseWebServices.Contracts.Data
Assembly: QPulseWebServices.Contracts (in QPulseWebServices.Contracts.dll) Version: 2.100.591.48

Syntax

C#
public enum DataFieldValidatorType

Members

Member nameValueDescription
MinValue0 The related DataField.Value must be no less than the value specified in the DataFieldValidator.Parameter.
MaxValue1 The related DataField.Value must be no more than the value specified Parameter
PositiveValue2 The related DataField.Value must a positive number
NegativeValue3 The related DataField.Value must a negative number
IntegerValue4 The related DataField.Value must be an integer value
Mandatory5 The related DataField.Value is required.
StringMaxLength6 The related DataField.Value must be a String with a length no longer than the value specified in the DataFieldValidator.Parameter.
StringMinLength7 The related DataField.Value must be a String with a length no shorter than the value specified in the DataFieldValidator.Parameter.

See Also