Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ConnectionLimit
int System.Net.ServicePoint.ConnectionLimit
get
set
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
}
90
_connectionLimit
=
value
;
91
}
92
}
System.Net.ServicePoint._connectionLimit
int _connectionLimit
Definition
ServicePoint.cs:13
System.ExceptionArgument.value
@ value
System
Net
ServicePoint
Generated by
1.10.0