23 lines
932 B
C#
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: 0x020002BD RID: 701
|
|
[Token(Token = "0x20002BD")]
|
|
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: 0x04000AFC RID: 2812
|
|
[Token(Token = "0x4000AFC")]
|
|
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: 0x04000AFD RID: 2813
|
|
[Token(Token = "0x4000AFD")]
|
|
International
|
|
}
|
|
}
|