Is

Common constraints.

Summary
Common constraints.
Determains whatever the parameter is greater than objToCompare.
Determains whatever the parameter is less than objToCompare.
Determains whatever the parameter is less than or equal to objToCompare.
Determains whatever the parameter is greater than or equal to objToCompare.
Determains whatever the parameter equal to obj.
Determains whatever the parameter does not equal to obj.
This constraint always succeeds
Determains whatever the parameter is null
Determains whatever the parameter is not null
Determains whatever the parameter if of the specified type.
Determains whatever the parameter if of the specified type.

Functions

GreaterThan

Determains whatever the parameter is greater than objToCompare.  The parameter must implement IComparable

LessThan

Determains whatever the parameter is less than objToCompare.  The parameter must implement IComparable

LessThanOrEqual

Determains whatever the parameter is less than or equal to objToCompare.  The parameter must implement IComparable

GreaterThanOrEqual

Determains whatever the parameter is greater than or equal to objToCompare.  The parameter must implement IComparable

Equal

Determains whatever the parameter equal to obj.

NotEqual

Determains whatever the parameter does not equal to obj.

Anything

This constraint always succeeds

Null

Determains whatever the parameter is null

NotNull

Determains whatever the parameter is not null

TypeOf

Determains whatever the parameter if of the specified type.

TypeOf

Determains whatever the parameter if of the specified type.