20 lines
568 B
C#
20 lines
568 B
C#
using System;
|
|
|
|
namespace System.Net.Mail
|
|
{
|
|
/// <summary>Specifies the level of access allowed to a Simple Mail Transport Protocol (SMTP) server.</summary>
|
|
// Token: 0x02000142 RID: 322
|
|
public enum SmtpAccess
|
|
{
|
|
/// <summary>No access to an SMTP host.</summary>
|
|
// Token: 0x04000B1F RID: 2847
|
|
None,
|
|
/// <summary>Connection to an SMTP host on the default port (port 25).</summary>
|
|
// Token: 0x04000B20 RID: 2848
|
|
Connect,
|
|
/// <summary>Connection to an SMTP host on any port.</summary>
|
|
// Token: 0x04000B21 RID: 2849
|
|
ConnectToUnrestrictedPort
|
|
}
|
|
}
|