This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace System.Net.Mail
{
/// <summary>Specifies how email messages are delivered.</summary>
// Token: 0x02000149 RID: 329
public enum SmtpDeliveryMethod
{
/// <summary>Email is sent through the network to an SMTP server.</summary>
// Token: 0x04000B54 RID: 2900
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: 0x04000B55 RID: 2901
SpecifiedPickupDirectory,
/// <summary>Email is copied to the pickup directory used by a local Internet Information Services (IIS) for delivery.</summary>
// Token: 0x04000B56 RID: 2902
PickupDirectoryFromIis
}
}