Discuss this help topic in SecureBlackbox Forum

TElMessageParsingOptions

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


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

[Pascal]
    TElMessageParsingOptions = set of TElMessageParsingOption;

[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;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBMIME
  • Assembly: SecureBlackbox.MIME
VCL:
  • Unit: SBMIME
Java:
  • Package: SecureBlackbox.MIME.jar
C++:
  • sbmime.h

See also:     TElMessageParsingOption    

Discuss this help topic in SecureBlackbox Forum