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