Files
2026-04-10 22:50:51 +02:00

23 lines
932 B
C#

using System;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// <summary>The delivery format to use for sending outgoing email using the Simple Mail Transport Protocol (SMTP).</summary>
// Token: 0x020002C1 RID: 705
[Token(Token = "0x20002C1")]
public enum SmtpDeliveryFormat
{
/// <summary>A delivery format using 7-bit ASCII.
/// The traditional delivery format used in the Simple Mail Transport Protocol (SMTP) for mail messages.</summary>
// Token: 0x04000B09 RID: 2825
[Token(Token = "0x4000B09")]
SevenBit,
/// <summary>A delivery format where non-ASCII characters in the envelope and header fields used in the Simple Mail Transport Protocol (SMTP) for mail messages are encoded with UTF-8 characters.
/// The extensions to support international email are defined in IETF RFC 6530, 6531, and 6532.</summary>
// Token: 0x04000B0A RID: 2826
[Token(Token = "0x4000B0A")]
International
}
}