Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.Mail.jar
C++:
Discuss this help topic in SecureBlackbox Forum