Discuss this help topic in SecureBlackbox Forum
Defines possible types of IMAP FETCH response items.
Declaration
[C#]
public enum TElIMAPFetchResponseItemType { imapFetchUunknown = 0, imapFetchUid = 1, imapFetchEnvelope = 2, imapFetchFlags = 3, imapFetchInternaldate = 4, imapFetchRfc822 = 5, imapFetchRfc822Header = 6, imapFetchRfc822Size = 7, imapFetchRfc822Text = 8 };
[VB.NET]
Enum TElIMAPFetchResponseItemType
imapFetchUunknown = 0
imapFetchUid = 1
imapFetchEnvelope = 2
imapFetchFlags = 3
imapFetchInternaldate = 4
imapFetchRfc822 = 5
imapFetchRfc822Header = 6
imapFetchRfc822Size = 7
imapFetchRfc822Text = 8
End Enum
[Pascal]
TElIMAPFetchResponseItemType = (imapFetchUunknown, imapFetchUid, imapFetchEnvelope, imapFetchFlags, imapFetchInternaldate, imapFetchRfc822, imapFetchRfc822Header, imapFetchRfc822Size, imapFetchRfc822Text);
[C++]
typedef uint8_t TElIMAPFetchResponseItemTypeRaw;
typedef enum { imapFetchUunknown = 0, imapFetchUid = 1, imapFetchEnvelope = 2, imapFetchFlags = 3, imapFetchInternaldate = 4, imapFetchRfc822 = 5, imapFetchRfc822Header = 6, imapFetchRfc822Size = 7, imapFetchRfc822Text = 8 } TElIMAPFetchResponseItemType;
[PHP]
class TElIMAPFetchResponseItemType extends TSBBaseEnum {
const imapFetchUunknown = 0;
const imapFetchUid = 1;
const imapFetchEnvelope = 2;
const imapFetchFlags = 3;
const imapFetchInternaldate = 4;
const imapFetchRfc822 = 5;
const imapFetchRfc822Header = 6;
const imapFetchRfc822Size = 7;
const imapFetchRfc822Text = 8;
}
[Java]
public enum TElIMAPFetchResponseItemType { imapFetchUunknown, imapFetchUid, imapFetchEnvelope, imapFetchFlags, imapFetchInternaldate, imapFetchRfc822, imapFetchRfc822Header, imapFetchRfc822Size, imapFetchRfc822Text }
Possible values
Declared in
.NET:
- Namespace: SBIMAPClient
- Assembly: SecureBlackbox.Mail
VCL:Java:
- Package: SecureBlackbox.Mail.jar
C++:
Discuss this help topic in SecureBlackbox Forum