Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum