ExitCodeTestType Enumeration
In This Topic
Specifies the type of test that is applied to an exit code.
Syntax
Members
Member | Value | Description |
BT | 6 |
The exit code returned by the program or script must be between the target values specified.
|
EQ | 2 |
The exit code returned by the program or script must be equal to the target value specified.
|
Even | 8 |
The exit code returned by the program or script must be even.
|
GE | 4 |
The exit code returned by the program or script must be greater than or equal to the target value specified.
|
GT | 5 |
The exit code returned by the program or script must be greater than the target value specified.
|
HRFailed | 10 |
The exit code returned by the program or script must satisfy the OLE FAILED macro.
|
HRSucceeded | 9 |
The exit code returned by the program or script must satisfy the OLE SUCCEEDED macro.
|
InRange | 12 |
The exit code must be in the specified range(s)
|
LE | 1 |
The exit code returned by the program or script must be less than or equal to the target value specified.
|
LT | 0 |
The exit code returned by the program or script must be less than the target value specified.
|
NE | 3 |
The exit code returned by the program or script must be not be equal to the target value specified.
|
NotInRange | 13 |
The exit code must not be in the specified range(s)
|
Odd | 7 |
The exit code returned by the program or script must be odd.
|
Script | 11 |
The exit code will be checked by a script
|
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ArcanaDevelopment.adTempus.Shared.ExitCodeTestType
See Also