Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#/Java]
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;
Description
Possible values:
Declared in
.NET:
- Namespace: SBTypes
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum