[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.DataAssembly: QPulseWebServices.Contracts (in QPulseWebServices.Contracts.dll) Version: 2.100.591.48
Syntax
| C# |
|---|
public enum DataFieldValidatorType |
Members
| Member name | Value | Description | |
|---|---|---|---|
| MinValue | 0 | The related DataField.Value must be no less than the value specified in the DataFieldValidator.Parameter. | |
| MaxValue | 1 | The related DataField.Value must be no more than the value specified Parameter | |
| PositiveValue | 2 | The related DataField.Value must a positive number | |
| NegativeValue | 3 | The related DataField.Value must a negative number | |
| IntegerValue | 4 | The related DataField.Value must be an integer value | |
| Mandatory | 5 | The related DataField.Value is required. | |
| StringMaxLength | 6 | The related DataField.Value must be a String with a length no longer than the value specified in the DataFieldValidator.Parameter. | |
| StringMinLength | 7 | The related DataField.Value must be a String with a length no shorter than the value specified in the DataFieldValidator.Parameter. |