using System;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// Specifies how email messages are delivered.
// Token: 0x020002BE RID: 702
[Token(Token = "0x20002BE")]
public enum SmtpDeliveryMethod
{
/// Email is sent through the network to an SMTP server.
// Token: 0x04000AFF RID: 2815
[Token(Token = "0x4000AFF")]
Network,
/// Email is copied to the directory specified by the property for delivery by an external application.
// Token: 0x04000B00 RID: 2816
[Token(Token = "0x4000B00")]
SpecifiedPickupDirectory,
/// Email is copied to the pickup directory used by a local Internet Information Services (IIS) for delivery.
// Token: 0x04000B01 RID: 2817
[Token(Token = "0x4000B01")]
PickupDirectoryFromIis
}
}