23 lines
891 B
C#
23 lines
891 B
C#
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
|
|
}
|
|
}
|