7 references to SmtpPermission
System (7)
net\System\Net\Configuration\SmtpNetworkElement.cs (1)
43(new SmtpPermission(SmtpAccess.ConnectToUnrestrictedPort)).Demand();
net\System\Net\mail\SmtpClient.cs (3)
107new SmtpPermission(SmtpAccess.Connect).Demand(); 110new SmtpPermission(SmtpAccess.ConnectToUnrestrictedPort).Demand(); 247new SmtpPermission(SmtpAccess.ConnectToUnrestrictedPort).Demand();
net\System\Net\mail\smtppermission.cs (3)
135return new SmtpPermission(access); 152return new SmtpPermission(this.access > other.access ? this.access : other.access); 170return new SmtpPermission(this.access < other.access ? this.access : other.access);