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

◆ MakeQueryString() [1/2]

static string System.Net.ServicePointManager.MakeQueryString ( Uri address)
inlinestaticprivate

Definition at line 194 of file ServicePointManager.cs.

195 {
196 if (!address.IsDefaultPort)
197 {
198 return address.Scheme + "://" + address.DnsSafeHost + ":" + address.Port;
199 }
200 return address.Scheme + "://" + address.DnsSafeHost;
201 }

References System.Uri.DnsSafeHost, System.Uri.IsDefaultPort, and System.Uri.Port.

Referenced by System.Net.ServicePointManager.FindServicePoint(), and System.Net.ServicePointManager.MakeQueryString().