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

◆ PingOptions() [2/2]

System.Net.NetworkInformation.PingOptions.PingOptions ( int ttl,
bool dontFragment )
inline

Definition at line 42 of file PingOptions.cs.

43 {
44 if (ttl <= 0)
45 {
46 throw new ArgumentOutOfRangeException("ttl");
47 }
48 _ttl = ttl;
49 _dontFragment = dontFragment;
50 }

References System.Net.NetworkInformation.PingOptions._dontFragment, and System.Net.NetworkInformation.PingOptions._ttl.