NegatableValidationSpecification<T>.

IsNotSatisfiedBy(T, SpecificationResult) Method

Summary

Checks if Specification is NOT satisfied by candidate object. Returns validation result no matter is satisfied or not.

Syntax

[PublicAPI]
public bool IsNotSatisfiedBy(T candidate, out SpecificationResult result)

Attributes

Type Description
PublicAPI

Parameters

Name Type Description
candidate T Candidate object to verification.
result SpecificationResult Contains validation summary - errors, types of all executed Specifications and trace message in the style of Boole algebra.

Return Value

Type Description
bool

true - Specification is NOT satisfied by candidate.

false - is satisfied. result should contains errors.

GitHub