Discuss this help topic in SecureBlackbox Forum

TSBOperationErrorHandling

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This topic is under development…

Declaration

[C#]
    public enum TSBOperationErrorHandling { oehTryAllItems = 0, oehStopOnFailure = 1, oehIgnoreErrors = 2 };

[VB.NET]
    Enum TSBOperationErrorHandling
        oehTryAllItems = 0
        oehStopOnFailure = 1
        oehIgnoreErrors = 2
    End Enum

[Pascal]
    TSBOperationErrorHandling = (oehTryAllItems, oehStopOnFailure, oehIgnoreErrors);

[C++]
    typedef uint8_t TSBOperationErrorHandlingRaw;
    typedef enum { oehTryAllItems = 0, oehStopOnFailure = 1, oehIgnoreErrors = 2 } TSBOperationErrorHandling;

[PHP]
    class TSBOperationErrorHandling extends TSBBaseEnum {
        const oehTryAllItems = 0;
        const oehStopOnFailure = 1;
        const oehIgnoreErrors = 2;
    }

[Java]
    public enum TSBOperationErrorHandling { oehTryAllItems, oehStopOnFailure, oehIgnoreErrors }

Possible values

Declared in

.NET:
  • Namespace: SBTypes
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBTypes
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbtypes.h

Discuss this help topic in SecureBlackbox Forum