adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ExitCodeTestType Enumeration


In This Topic
    ExitCodeTestType Enumeration
    In This Topic
    Specifies the type of test that is applied to an exit code.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("5567FEBE-C720-43FB-9AD0-D5E72D79D94F")>
    Public Enum ExitCodeTestType 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("5567FEBE-C720-43FB-9AD0-D5E72D79D94F")]
    public enum ExitCodeTestType : System.Enum 
    [ComVisible(true)]
    [Guid("5567FEBE-C720-43FB-9AD0-D5E72D79D94F")]
    public enum class ExitCodeTestType : public System.Enum 
    Members
    MemberValueDescription
    BT6 The exit code returned by the program or script must be between the target values specified.
    EQ2 The exit code returned by the program or script must be equal to the target value specified.
    Even8 The exit code returned by the program or script must be even.
    GE4 The exit code returned by the program or script must be greater than or equal to the target value specified.
    GT5 The exit code returned by the program or script must be greater than the target value specified.
    HRFailed10 The exit code returned by the program or script must satisfy the OLE FAILED macro.
    HRSucceeded9 The exit code returned by the program or script must satisfy the OLE SUCCEEDED macro.
    LE1 The exit code returned by the program or script must be less than or equal to the target value specified.
    LT0 The exit code returned by the program or script must be less than the target value specified.
    NE3 The exit code returned by the program or script must be not be equal to the target value specified.
    Odd7 The exit code returned by the program or script must be odd.
    Script11 The exit code will be checked by a script
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.ExitCodeTestType

    See Also