ValidateResult
Description
Holds the results of the validation of an object graph.
In the string representation, messages are output in two blocks, first all warnings (see Warnings), then all errors (see Errors). Each message is output using IValidateMessage.ToString, where the previous warning or error of the respective block is passed in.
- See also
Public / Attributes
Errors
The validation errors.
This array will either be non-empty (validation has failed) or null
(validation has succeeded).
- See also
Messages
The validation messages (errors and warnings) or null
.
This array will either be non-empty (one or more errors or warnings are present) or null
(there are no errors and no warnings).
- See also