[]
Specifies the validation error state of a parameter.
public enum ParameterValidationError
| Name | Description |
|---|---|
| BlankValueAssignedToNonBlankParameter | A blank (empty string) value was assigned to a parameter that does not allow blanks. |
| InvalidDataTypeForParameter | The value assigned to the parameter is not a valid data type for that parameter. |
| NoErrors | No validation errors occurred. |
| NullValueAssignedToNonNullableParameter | A null value was assigned to a parameter that is not nullable. |
| ParameterNotValidated | The parameter has not been validated yet. |
| ParameterValueIsNotValid | The assigned parameter value is not valid. |