This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
using System;
using Cpp2IlInjected;
namespace System.Net.Mime
{
/// <summary>Specifies the Content-Transfer-Encoding header information for an email message attachment.</summary>
// Token: 0x020002D3 RID: 723
[Token(Token = "0x20002D3")]
public enum TransferEncoding
{
/// <summary>Encodes data that consists of printable characters in the US-ASCII character set. See RFC 2406 Section 6.7.</summary>
// Token: 0x04000B6B RID: 2923
[Token(Token = "0x4000B6B")]
QuotedPrintable,
/// <summary>Encodes stream-based data. See RFC 2406 Section 6.8.</summary>
// Token: 0x04000B6C RID: 2924
[Token(Token = "0x4000B6C")]
Base64,
/// <summary>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.</summary>
// Token: 0x04000B6D RID: 2925
[Token(Token = "0x4000B6D")]
SevenBit,
/// <summary>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.</summary>
// Token: 0x04000B6E RID: 2926
[Token(Token = "0x4000B6E")]
EightBit,
/// <summary>Indicates that the transfer encoding is unknown.</summary>
// Token: 0x04000B6F RID: 2927
[Token(Token = "0x4000B6F")]
Unknown = -1
}
}