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

◆ Parse() [2/2]

static IPAddress System.Net.IPAddress.Parse ( string ipString)
inlinestaticinherited

Definition at line 320 of file IPAddress.cs.

321 {
322 if (ipString == null)
323 {
324 throw new ArgumentNullException("ipString");
325 }
326 return IPAddressParser.Parse(ipString.AsSpan(), tryParse: false);
327 }

References System.Net.IPAddressParser.Parse().

Referenced by System.Net.Dns.GetHostByAddress().