Table of Contents

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

IReadOnlySet<ValidationState>

HasErrors

Gets an indicator that errors exist within the result.

bool HasErrors { get; }

Property Value

bool

HasWarnings

Gets an indicator that warnings exist within the result.

bool HasWarnings { get; }

Property Value

bool

Warnings

Gets a set of validation warnings.

IReadOnlySet<ValidationState> Warnings { get; }

Property Value

IReadOnlySet<ValidationState>