This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
namespace System.Net.Mime
{
/// <summary>Specifies the Content-Transfer-Encoding header information for an e-mail message attachment.</summary>
// Token: 0x02000155 RID: 341
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: 0x04000B8D RID: 2957
QuotedPrintable,
/// <summary>Encodes stream-based data. See RFC 2406 Section 6.8.</summary>
// Token: 0x04000B8E RID: 2958
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: 0x04000B8F RID: 2959
SevenBit,
/// <summary>Indicates that the transfer encoding is unknown.</summary>
// Token: 0x04000B90 RID: 2960
Unknown = -1
}
}