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