Discuss this help topic in SecureBlackbox Forum

TElMIMEMessagePriority

Declared in     


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


Defines possible priorities of the MIME messages.

Declaration

[C#]
    public enum TElMIMEMessagePriority { mpLowest = 0, mpLow = 1, mpNormal = 2, mpHigh = 3, mpHighest = 4 };

[VB.NET]
    Enum TElMIMEMessagePriority
        mpLowest = 0
        mpLow = 1
        mpNormal = 2
        mpHigh = 3
        mpHighest = 4
    End Enum

[Pascal]
    TElMIMEMessagePriority = (mpLowest, mpLow, mpNormal, mpHigh, mpHighest);

[C++]
    typedef uint8_t TElMIMEMessagePriorityRaw;
    typedef enum { mpLowest = 0, mpLow = 1, mpNormal = 2, mpHigh = 3, mpHighest = 4 } TElMIMEMessagePriority;

[PHP]
    class TElMIMEMessagePriority extends TSBBaseEnum {
        const mpLowest = 0;
        const mpLow = 1;
        const mpNormal = 2;
        const mpHigh = 3;
        const mpHighest = 4;
    }

[Java]
    public enum TElMIMEMessagePriority { mpLowest, mpLow, mpNormal, mpHigh, mpHighest }

Possible values

Declared in

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

Discuss this help topic in SecureBlackbox Forum