using System; using Cpp2IlInjected; namespace System.Net.Mime { /// Specifies the Content-Transfer-Encoding header information for an email message attachment. // Token: 0x020002D3 RID: 723 [Token(Token = "0x20002D3")] public enum TransferEncoding { /// Encodes data that consists of printable characters in the US-ASCII character set. See RFC 2406 Section 6.7. // Token: 0x04000B6B RID: 2923 [Token(Token = "0x4000B6B")] QuotedPrintable, /// Encodes stream-based data. See RFC 2406 Section 6.8. // Token: 0x04000B6C RID: 2924 [Token(Token = "0x4000B6C")] 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: 0x04000B6D RID: 2925 [Token(Token = "0x4000B6D")] 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: 0x04000B6E RID: 2926 [Token(Token = "0x4000B6E")] EightBit, /// Indicates that the transfer encoding is unknown. // Token: 0x04000B6F RID: 2927 [Token(Token = "0x4000B6F")] Unknown = -1 } }