using System; namespace MsgReader.Mime.Header { /// /// that describes the ContentTransferEncoding header field /// /// See RFC 2045 section 6 for more details public enum ContentTransferEncoding { /// /// 7 bit Encoding /// SevenBit, /// /// 8 bit Encoding /// EightBit, /// /// Quoted Printable Encoding /// QuotedPrintable, /// /// Base64 Encoding /// Base64, /// /// Binary Encoding /// Binary } }