25 lines
895 B
C#
25 lines
895 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Net.Mail
|
|
{
|
|
/// <summary>Specifies how email messages are delivered.</summary>
|
|
// Token: 0x020002C2 RID: 706
|
|
[Token(Token = "0x20002C2")]
|
|
public enum SmtpDeliveryMethod
|
|
{
|
|
/// <summary>Email is sent through the network to an SMTP server.</summary>
|
|
// Token: 0x04000B0C RID: 2828
|
|
[Token(Token = "0x4000B0C")]
|
|
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: 0x04000B0D RID: 2829
|
|
[Token(Token = "0x4000B0D")]
|
|
SpecifiedPickupDirectory,
|
|
/// <summary>Email is copied to the pickup directory used by a local Internet Information Services (IIS) for delivery.</summary>
|
|
// Token: 0x04000B0E RID: 2830
|
|
[Token(Token = "0x4000B0E")]
|
|
PickupDirectoryFromIis
|
|
}
|
|
}
|