Discuss this help topic in SecureBlackbox Forum

TSBIMAPLogDirection

Declared in     


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


Specifies the direction of the command in the IMAP protocol log. Used by TElIMAPClient.OnLog event.

Declaration

[C#]
    public enum TSBIMAPLogDirection { imapSent = 0, imapReceived = 1 };

[VB.NET]
    Enum TSBIMAPLogDirection
        imapSent = 0
        imapReceived = 1
    End Enum

[Pascal]
    TSBIMAPLogDirection = (imapSent, imapReceived);

[C++]
    typedef uint8_t TSBIMAPLogDirectionRaw;
    typedef enum { imapSent = 0, imapReceived = 1 } TSBIMAPLogDirection;

[PHP]
    class TSBIMAPLogDirection extends TSBBaseEnum {
        const imapSent = 0;
        const imapReceived = 1;
    }

[Java]
    public enum TSBIMAPLogDirection { imapSent, imapReceived }

Possible values

Declared in

.NET:
  • Namespace: SBIMAPClient
  • Assembly: SecureBlackbox.Mail
VCL:
  • Unit: SBIMAPClient
Java:
  • Package: SecureBlackbox.Mail.jar
C++:
  • sbimapclient.h

Discuss this help topic in SecureBlackbox Forum