Discuss this help topic in SecureBlackbox Forum
Defines AS message data transfer encodings.
Declaration
[C#/Java]
enum TSBASDataTransferEncoding { dteAuto = 0, dte7Bit = 1, dte8Bit = 2, dteBinary = 3, dteBase64 = 4 };
[VB.NET]
Enum TSBASDataTransferEncoding
dteAuto = 0
dte7Bit = 1
dte8Bit = 2
dteBinary = 3
dteBase64 = 4
End Enum
[Pascal]
TSBASDataTransferEncoding = (dteAuto, dte7Bit, dte8Bit, dteBinary, dteBase64);
[C++]
typedef uint8_t TSBASDataTransferEncodingRaw;
typedef enum { dteAuto = 0, dte7Bit = 1, dte8Bit = 2, dteBinary = 3, dteBase64 = 4 } TSBASDataTransferEncoding;
Description
Possible values:
Declared in
.NET:
- Namespace: SBASCommon
- Assembly: SecureBlackbox.EDI
VCL:Java:
- Package: SecureBlackbox.EDI.jar
C++:
Discuss this help topic in SecureBlackbox Forum