Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Port

int System.Net.Mail.SmtpClient.Port
getset

Definition at line 100 of file SmtpClient.cs.

101 {
102 get
103 {
104 return _port;
105 }
106 set
107 {
108 if (InCall)
109 {
111 }
112 if (value <= 0)
113 {
114 throw new ArgumentOutOfRangeException("value");
115 }
116 if (value != _port)
117 {
118 _port = value;
119 _servicePoint = null;
120 }
121 }
122 }
static string SmtpInvalidOperationDuringSend
Definition SR.cs:90
Definition SR.cs:7

Referenced by System.Net.Mail.SmtpClient.SendAsync().