This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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
}
}