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

◆ ConnectionLimit

int System.Net.ServicePoint.ConnectionLimit
getset

Definition at line 78 of file ServicePoint.cs.

79 {
80 get
81 {
82 return _connectionLimit;
83 }
84 set
85 {
86 if (value <= 0)
87 {
88 throw new ArgumentOutOfRangeException("value");
89 }
91 }
92 }