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

◆ MaxServicePoints

int System.Net.ServicePointManager.MaxServicePoints
staticgetset

Definition at line 39 of file ServicePointManager.cs.

40 {
41 get
42 {
43 return s_maxServicePoints;
44 }
45 set
46 {
47 if (value < 0)
48 {
49 throw new ArgumentOutOfRangeException("value");
50 }
52 }
53 }