33 lines
1.4 KiB
C#
33 lines
1.4 KiB
C#
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
|
|
}
|
|
}
|