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

◆ CheckHostAndPort()

void System.Net.Mail.SmtpClient.CheckHostAndPort ( )
inlineprivate

Definition at line 758 of file SmtpClient.cs.

759 {
760 if (_host == null || _host.Length == 0)
761 {
763 }
764 if (_port <= 0 || _port > 65535)
765 {
767 }
768 }
static string InvalidPort
Definition SR.cs:58
static string UnspecifiedHost
Definition SR.cs:132
Definition SR.cs:7

References System.Net.Mail.SmtpClient._host, System.SR.InvalidPort, and System.SR.UnspecifiedHost.

Referenced by System.Net.Mail.SmtpClient.Send(), and System.Net.Mail.SmtpClient.SendAsync().