Discuss this help topic in SecureBlackbox Forum
Defines a set of IMAP mailbox attributes.
Declaration
[C#]
TSBIMAPMailBoxAttributes = int;
const int imapNoSelect = 1;
const int imapNoInferiors = 2;
const int imapMarked = 4;
const int imapUnmarked = 8;
const int imapHasChildren = 16;
const int imapHasNoChildren = 32;
[VB.NET]
TSBIMAPMailBoxAttributes As Integer
Const imapNoSelect As Integer = 1
Const imapNoInferiors As Integer = 2
Const imapMarked As Integer = 4
Const imapUnmarked As Integer = 8
Const imapHasChildren As Integer = 16
Const imapHasNoChildren As Integer = 32
[C++]
typedef uint8_t TSBIMAPMailBoxAttributeRaw;
typedef enum { imapNoSelect = 0, imapNoInferiors = 1, imapMarked = 2, imapUnmarked = 3, imapHasChildren = 4, imapHasNoChildren = 5 } TSBIMAPMailBoxAttribute;
typedef uint32_t TSBIMAPMailBoxAttributesRaw;
typedef enum { f_imapNoSelect = 1, f_imapNoInferiors = 2, f_imapMarked = 4, f_imapUnmarked = 8, f_imapHasChildren = 16, f_imapHasNoChildren = 32 } TSBIMAPMailBoxAttributes;
[PHP]
class TSBIMAPMailBoxAttributes extends TSBBaseEnum {
const imapNoSelect = 1;
const imapNoInferiors = 2;
const imapMarked = 4;
const imapUnmarked = 8;
const imapHasChildren = 16;
const imapHasNoChildren = 32;
}
Possible values
Declared in
.NET:
- Namespace: SBIMAPClient
- Assembly: SecureBlackbox.Mail
VCL:Java:
- Package: SecureBlackbox.Mail.jar
C++:
Discuss this help topic in SecureBlackbox Forum