using System;
namespace System.Net.Mime
{
/// Specifies the Content-Transfer-Encoding header information for an e-mail message attachment.
// Token: 0x02000155 RID: 341
public enum TransferEncoding
{
/// Encodes data that consists of printable characters in the US-ASCII character set. See RFC 2406 Section 6.7.
// Token: 0x04000B8D RID: 2957
QuotedPrintable,
/// Encodes stream-based data. See RFC 2406 Section 6.8.
// Token: 0x04000B8E RID: 2958
Base64,
/// 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.
// Token: 0x04000B8F RID: 2959
SevenBit,
/// Indicates that the transfer encoding is unknown.
// Token: 0x04000B90 RID: 2960
Unknown = -1
}
}