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

◆ MaxIdleTime

int System.Net.ServicePoint.MaxIdleTime
getset

Definition at line 35 of file ServicePoint.cs.

36 {
37 get
38 {
39 return _maxIdleTime;
40 }
41 set
42 {
43 if (value < -1)
44 {
45 throw new ArgumentOutOfRangeException("value");
46 }
48 }
49 }