C# Class HandCoded.Validation.Precondition.BinaryPrecondition

The BinaryPrecondition class holds the references to the underlying Precondition instances for binary logic operators.
Inheritance: Precondition
Show file Open project: formicary/fpml-toolkit-csharp

Protected Properties

Property Type Description
lhs Precondition
rhs Precondition

Protected Methods

Method Description
BinaryPrecondition ( Precondition lhs, Precondition rhs ) : System

Constructs a BinaryPrecondition instance.

Method Details

BinaryPrecondition() protected method

Constructs a BinaryPrecondition instance.
protected BinaryPrecondition ( Precondition lhs, Precondition rhs ) : System
lhs Precondition The left hand side .
rhs Precondition The right hand side .
return System

Property Details

lhs protected property

The underlying left hand side Precondition.
protected Precondition,HandCoded.Validation lhs
return Precondition

rhs protected property

The underlying right hand side Precondition.
protected Precondition,HandCoded.Validation rhs
return Precondition