This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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: 0x020002CF RID: 719
[Token(Token = "0x20002CF")]
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: 0x04000B5E RID: 2910
[Token(Token = "0x4000B5E")]
QuotedPrintable,
/// <summary>Encodes stream-based data. See RFC 2406 Section 6.8.</summary>
// Token: 0x04000B5F RID: 2911
[Token(Token = "0x4000B5F")]
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: 0x04000B60 RID: 2912
[Token(Token = "0x4000B60")]
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: 0x04000B61 RID: 2913
[Token(Token = "0x4000B61")]
EightBit,
/// <summary>Indicates that the transfer encoding is unknown.</summary>
// Token: 0x04000B62 RID: 2914
[Token(Token = "0x4000B62")]
Unknown = -1
}
}