Enum ComparisonFunc
- Namespace
- Pie
- Assembly
- Pie.dll
Describes when the various tests should pass.
public enum ComparisonFunc
Fields
Always = 7
The test will always pass.
Equal = 2
The test passes if the incoming value is equal to the stored value.
Greater = 4
The test passes if the incoming value is greater than the stored value.
GreaterEqual = 6
The test passes if the incoming value is greater than or equal to the stored value.
Less = 1
The test passes if the incoming value is less than the stored value.
LessEqual = 3
The test passes if the incoming value is less than or equal to the stored value.
Never = 0
The test never passes.
NotEqual = 5
The test passes if the incoming value is not equal to the stored value.