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

◆ Ttl

int System.Net.NetworkInformation.PingOptions.Ttl
getset

Definition at line 9 of file PingOptions.cs.

10 {
11 get
12 {
13 return _ttl;
14 }
15 set
16 {
17 if (value <= 0)
18 {
19 throw new ArgumentOutOfRangeException("value");
20 }
21 _ttl = value;
22 }
23 }