using System; namespace LumiSoft.Net.IMAP.Client { /// <summary> /// Specifies what data is requested from IMAP server FETCH command. /// Fetch items are flags and can be combined. For example: IMAP_FetchItem_Flags.MessageFlags | IMAP_FetchItem_Flags.Header. /// </summary> public enum IMAP_FetchItem_Flags { /// <summary> /// Message UID value. /// </summary> UID = 1, /// <summary> /// Message size in bytes. /// </summary> Size = 2, /// <summary> /// Message IMAP server INTERNALDATE. /// </summary> InternalDate = 4, /// <summary> /// Fetches message flags. (\SEEN \ANSWERED ...) /// </summary> MessageFlags = 8, /// <summary> /// Fetches message header. /// </summary> Header = 16, /// <summary> /// Fetches full message. /// </summary> Message = 32, /// <summary> /// Fetches message ENVELOPE structure. /// </summary> Envelope = 64, /// <summary> /// Fetches message BODYSTRUCTURE structure. /// </summary> BodyStructure = 128, /// <summary> /// Fetches all info. /// </summary> All = 0xFFFF } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Math Primers for Programmers