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

◆ SmtpClient() [3/3]

System.Net.Mail.SmtpClient.SmtpClient ( string? host,
int port )
inline

Definition at line 276 of file SmtpClient.cs.

277 {
278 if (port < 0)
279 {
280 throw new ArgumentOutOfRangeException("port");
281 }
282 _host = host;
283 _port = port;
284 Initialize();
285 }

References System.Net.Mail.SmtpClient._host, System.Net.Mail.SmtpClient._port, and System.Net.Mail.SmtpClient.Initialize().