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

◆ DefaultConnectionLimit

int System.Net.ServicePointManager.DefaultConnectionLimit
staticgetset

Definition at line 55 of file ServicePointManager.cs.

56 {
57 get
58 {
59 return s_connectionLimit;
60 }
61 set
62 {
63 if (value <= 0)
64 {
65 throw new ArgumentOutOfRangeException("value");
66 }
68 }
69 }

Referenced by System.Net.ServicePointManager.FindServicePoint().