using System; using Cpp2IlInjected; namespace System.Net.Mime { /// Specifies the Content-Transfer-Encoding header information for an email message attachment. // Token: 0x020002CF RID: 719 [Token(Token = "0x20002CF")] public enum TransferEncoding { /// Encodes data that consists of printable characters in the US-ASCII character set. See RFC 2406 Section 6.7. // Token: 0x04000B5E RID: 2910 [Token(Token = "0x4000B5E")] QuotedPrintable, /// Encodes stream-based data. See RFC 2406 Section 6.8. // Token: 0x04000B5F RID: 2911 [Token(Token = "0x4000B5F")] Base64, /// Used for data that is not encoded. The data is in 7-bit US-ASCII characters with a total line length of no longer than 1000 characters. See RFC2406 Section 2.7. // Token: 0x04000B60 RID: 2912 [Token(Token = "0x4000B60")] SevenBit, /// The data is in 8-bit characters that may represent international characters with a total line length of no longer than 1000 8-bit characters. For more information about this 8-bit MIME transport extension, see IETF RFC 6152. // Token: 0x04000B61 RID: 2913 [Token(Token = "0x4000B61")] EightBit, /// Indicates that the transfer encoding is unknown. // Token: 0x04000B62 RID: 2914 [Token(Token = "0x4000B62")] Unknown = -1 } }