[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.0.590.81

Syntax

C#
public enum DataFieldValidatorType

Members

Member nameDescription
MinValue
The related DataField.Value must be no less than the value specified in the DataFieldValidator.Parameter.
MaxValue
The related DataField.Value must be no more than the value specified Parameter
PositiveValue
The related DataField.Value must a positive number
NegativeValue
The related DataField.Value must a negative number
IntegerValue
The related DataField.Value must be an integer value
Mandatory
The related DataField.Value is required.
StringMaxLength
The related DataField.Value must be a String with a length no longer than the value specified in the DataFieldValidator.Parameter.
StringMinLength
The related DataField.Value must be a String with a length no shorter than the value specified in the DataFieldValidator.Parameter.

See Also