Discuss this help topic in SecureBlackbox Forum
Defines defines extended options of message assembling and parsing.
Declaration
[C#/Java]
TElMessageExtendedOption = short;
const short meoIgnore7bit = 1;
const short meoAllowLongHeaderLines = 2;
[VB.NET]
TElMessageExtendedOption As SmallInt
Const meoIgnore7bit As SmallInt = 1
Const meoAllowLongHeaderLines As SmallInt = 2
[Pascal]
TElMessageExtendedOption = (meoIgnore7bit, meoAllowLongHeaderLines);
[C++]
typedef uint8_t TElMessageExtendedOptionRaw;
typedef enum { meoIgnore7bit = 0, meoAllowLongHeaderLines = 1 } TElMessageExtendedOption;
typedef uint32_t TElMessageExtendedOptionsRaw;
typedef enum { f_meoIgnore7bit = 1, f_meoAllowLongHeaderLines = 2 } TElMessageExtendedOptions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBMIME
- Assembly: SecureBlackbox.MIME
VCL:Java:
- Package: SecureBlackbox.MIME.jar
C++:
Discuss this help topic in SecureBlackbox Forum