Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
MaxServicePointIdleTime
int System.Net.ServicePointManager.MaxServicePointIdleTime
static
get
set
Definition at line
71
of file
ServicePointManager.cs
.
72
{
73
get
74
{
75
return
s_maxServicePointIdleTime
;
76
}
77
set
78
{
79
if
(
value
< -1)
80
{
81
throw
new
ArgumentOutOfRangeException(
"value"
);
82
}
83
s_maxServicePointIdleTime
=
value
;
84
}
85
}
System.Net.ServicePointManager.s_maxServicePointIdleTime
static int s_maxServicePointIdleTime
Definition
ServicePointManager.cs:22
System.ExceptionArgument.value
@ value
System
Net
ServicePointManager
Generated by
1.10.0