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
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// <summary>Specifies how email messages are delivered.</summary>
// Token: 0x020002BE RID: 702
[Token(Token = "0x20002BE")]
public enum SmtpDeliveryMethod
{
/// <summary>Email is sent through the network to an SMTP server.</summary>
// Token: 0x04000AFF RID: 2815
[Token(Token = "0x4000AFF")]
Network,
/// <summary>Email is copied to the directory specified by the <see cref="P:System.Net.Mail.SmtpClient.PickupDirectoryLocation" /> property for delivery by an external application.</summary>
// Token: 0x04000B00 RID: 2816
[Token(Token = "0x4000B00")]
SpecifiedPickupDirectory,
/// <summary>Email is copied to the pickup directory used by a local Internet Information Services (IIS) for delivery.</summary>
// Token: 0x04000B01 RID: 2817
[Token(Token = "0x4000B01")]
PickupDirectoryFromIis
}
}