Specifies the type of test that is applied to an exit code.
enum ExitCodeTestTypeEnum { exitCodeLT = 0, exitCodeLE, exitCodeEQ, exitCodeNE, exitCodeGE, exitCodeGT, exitCodeBT, exitCodeOdd, exitCodeEven, exitCodeHRSucceeded, exitCodeHRFailed, exitCodeScript };
public enum ExitCodeTestTypeEnum { exitCodeLT = 0, exitCodeLE, exitCodeEQ, exitCodeNE, exitCodeGE, exitCodeGT, exitCodeBT, exitCodeOdd, exitCodeEven, exitCodeHRSucceeded, exitCodeHRFailed, exitCodeScript }
Public Enum ExitCodeTestTypeEnum exitCodeLT = 0 exitCodeLE exitCodeEQ exitCodeNE exitCodeGE exitCodeGT exitCodeBT exitCodeOdd exitCodeEven exitCodeHRSucceeded exitCodeHRFailed exitCodeScript End Enum
Members |
Description |
exitCodeLT = 0 |
The exit code returned by the program or script must be less than the target value specified. |
exitCodeLE |
The exit code returned by the program or script must be less than or equal to the target value specified. |
exitCodeEQ |
The exit code returned by the program or script must be equal to the target value specified. |
exitCodeNE |
The exit code returned by the program or script must be not be equal to the target value specified. |
exitCodeGE |
The exit code returned by the program or script must be greater than or equal to the target value specified. |
exitCodeGT |
The exit code returned by the program or script must be greater than the target value specified. |
exitCodeBT |
The exit code returned by the program or script must be between the target values specified. |
exitCodeOdd |
The exit code returned by the program or script must be odd. |
exitCodeEven |
The exit code returned by the program or script must be even. |
exitCodeHRSucceeded |
The exit code returned by the program or script must satisfy the OLE SUCCEEDED macro. |
exitCodeHRFailed |
The exit code returned by the program or script must satisfy the OLE FAILED macro. |
exitCodeScript |
Reserved for future use; do not use. |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|