Discuss this help topic in SecureBlackbox Forum
Defines a set of TElMessageParsingOption.
Declaration
[C#]
TElMessageParsingOptions = int;
const int mpoStoreStream = 1;
const int mpoLoadData = 2;
const int mpoCalcDataSize = 4;
const int mpoRaiseError = 8;
const int mpoDelayDataDecode = 16;
[VB.NET]
TElMessageParsingOptions As Integer
Const mpoStoreStream As Integer = 1
Const mpoLoadData As Integer = 2
Const mpoCalcDataSize As Integer = 4
Const mpoRaiseError As Integer = 8
Const mpoDelayDataDecode As Integer = 16
[C++]
typedef uint8_t TElMessageParsingOptionRaw;
typedef enum { mpoStoreStream = 0, mpoLoadData = 1, mpoCalcDataSize = 2, mpoRaiseError = 3, mpoDelayDataDecode = 4 } TElMessageParsingOption;
typedef uint32_t TElMessageParsingOptionsRaw;
typedef enum { f_mpoStoreStream = 1, f_mpoLoadData = 2, f_mpoCalcDataSize = 4, f_mpoRaiseError = 8, f_mpoDelayDataDecode = 16 } TElMessageParsingOptions;
[PHP]
class TElMessageParsingOptions extends TSBBaseEnum {
const mpoStoreStream = 1;
const mpoLoadData = 2;
const mpoCalcDataSize = 4;
const mpoRaiseError = 8;
const mpoDelayDataDecode = 16;
}
Possible values
Declared in
.NET:
- Namespace: SBMIME
- Assembly: SecureBlackbox.MIME
VCL:Java:
- Package: SecureBlackbox.MIME.jar
C++:
Discuss this help topic in SecureBlackbox Forum