Interface IValidationResult
- Namespace
- Visus.AddressValidation.Validation
- Assembly
- Visus.AddressValidation.dll
Represents the result returned by a validator.
public interface IValidationResult
Properties
Errors
Gets a set of validation errors.
IReadOnlySet<ValidationState> Errors { get; }
Property Value
HasErrors
Gets an indicator that errors exist within the result.
bool HasErrors { get; }
Property Value
HasWarnings
Gets an indicator that warnings exist within the result.
bool HasWarnings { get; }
Property Value
Warnings
Gets a set of validation warnings.
IReadOnlySet<ValidationState> Warnings { get; }