API Reference
OperationType
Operation type enum to represent different types of operations that can be performed on a value
Inheritance
- Enum
- OperationType
Inherited Methods
public override sealed Int32 CompareTo(Object target) #Int32Parameters
- target Object
public override sealed String ToString(String format, IFormatProvider provider) #StringObsolete("The provider argument is not used. Use ToString(String) instead.")Parameters
- format String
Values
public const OperationType GreaterThanOrEqual #Actual value is greater than or equal to expected.
3public const OperationType Contains #Collection contains expected element or string contains substring.
6public const OperationType NotContains #Collection does not contain element or string does not contain substring.
9public const OperationType EqualToProperty #Actual value equals the value of SecondaryProperty.
13public const OperationType NotEqualProperty #Actual value does not equal the value of SecondaryProperty.
14public const OperationType GreaterThanProperty #Actual value is greater than the value of SecondaryProperty.
15public const OperationType GreaterOrEqualProperty #Actual value is greater than or equal to the value of SecondaryProperty.
16public const OperationType LessThanProperty #Actual value is less than the value of SecondaryProperty.
17public const OperationType LessOrEqualProperty #Actual value is less than or equal to the value of SecondaryProperty.
18public const OperationType Any #At least one item in a collection must satisfy the condition.
20public const OperationType Between #Actual value lies between Min and Max (inclusive unless specified otherwise).
22public const OperationType LessOrEqualPercentOf #Actual value is less than or equal to a percentage of SecondaryProperty.
24public const OperationType GreaterOrEqualPercentOf #Actual value is greater than or equal to a percentage of SecondaryProperty.
25public const OperationType GreaterOrEqualWhenSecondaryAtLeast #Conditional: if SecondaryProperty meets a minimum, require actual value ≥ expected.
26