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

◆ IPAddress() [1/7]

System.Net.IPAddress.IPAddress ( long newAddress)
inline

Definition at line 230 of file IPAddress.cs.

231 {
232 if (newAddress < 0 || newAddress > uint.MaxValue)
233 {
234 throw new ArgumentOutOfRangeException("newAddress");
235 }
236 PrivateAddress = (uint)newAddress;
237 }

References System.Net.IPAddress.PrivateAddress.

Referenced by System.Net.IPAddress.MapToIPv4(), and System.Net.IPAddress.MapToIPv6().