Defines methods and properties that are used by the validation classes to validate data for a specific property.
Author: Jacob W Anderson Date: 30 Oct 2003 (c) 2003 Portrate, LLC. All rights reserved.
For a list of all members of this type, see IDPLValidator Members.
[Visual Basic] Public Interface IDPLValidator Implements IXmlConfigurable [C#] public interface IDPLValidator : IXmlConfigurable [C++] public __gc __interface IDPLValidator : public IXmlConfigurable [JScript] public interface IDPLValidator extends IXmlConfigurable
| Type | Description |
|---|---|
| AbstractValidator | Provides basic implementation support for messages and conditional rules to trigger validators. Author: Jacob W Anderson (c) Portrate, LLC. All rights reserved. |
| DateFormatValidator | Validates a value against known date formats. If none of the date formats match the value, then the validator is triggered. Author: Jacob W Anderson |
| DateRangeValidator | Validates a date against a min and max date. Supports data names for the min and max date as well as the keyword 'today' for validating against the current date. Author: Jacob W Anderson |
| EnumerationValidator | Validates values against an enumeration of values. Determines a value to be invalid if the value does not match any of the enumerated values. Author: Jacob W Anderson (c) Portrate, LLC. All rights reserved. |
| RegexValidator | Performs validation using a regular expression. |
| StringLengthValidator | Verifies that a string is of a certain length, or length range. Reads the following attributes from the configuration element: minLength: The minimum length of the string maxLength: The maximum length of the string trimmed: True if the string is 'trimmed' prior to validation message: The message returned if validation fails allowNull: True if null strings are allowed Author: Jacob W Anderson Date: 30 Oct 2003 (c) 2003 Portrate, LLC. All rights reserved. |
| ValidatorGroup | Collects a group of validators and runs each one in sequence, stopping on the first one that is triggered. Author: Jacob W Anderson |
| ValueRangeValidator | Validates a value to be within a defined range. The range can be lower bounded, upper bounded, or closed bounded. Author: Jacob W Anderson |
| YearValidator | Validates the value of a year on a date. By default, this validator will prevent years that are earlier than today's year. With configuration, the lower and upper bound on years can be specified. Supports 2-digit and 4-digit years. 2-digit years will be interpreted as "last century" when they are less than 50. Author: Jacob W Anderson |
Namespace: Portrate.Interview.Model.Validation
Assembly: Portrate.Interview (in Portrate.Interview.dll)
IDPLValidator Members | Portrate.Interview.Model.Validation Namespace