Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
PooledConnectionLifetime
TimeSpan
System.Net.Http.SocketsHttpHandler.PooledConnectionLifetime
get
set
Definition at line
241
of file
SocketsHttpHandler.cs
.
242
{
243
get
244
{
245
return
_settings
.
_pooledConnectionLifetime
;
246
}
247
set
248
{
249
if
(
value
<
TimeSpan
.Zero &&
value
!=
Timeout
.
InfiniteTimeSpan
)
250
{
251
throw
new
ArgumentOutOfRangeException(
"value"
);
252
}
253
CheckDisposedOrStarted
();
254
_settings._pooledConnectionLifetime =
value
;
255
}
256
}
System.Net.Http.HttpConnectionSettings._pooledConnectionLifetime
TimeSpan _pooledConnectionLifetime
Definition
HttpConnectionSettings.cs:46
System.Net.Http.SocketsHttpHandler.CheckDisposedOrStarted
void CheckDisposedOrStarted()
Definition
SocketsHttpHandler.cs:463
System.Net.Http.SocketsHttpHandler._settings
readonly HttpConnectionSettings _settings
Definition
SocketsHttpHandler.cs:15
System.Threading.Timeout.InfiniteTimeSpan
static readonly TimeSpan InfiniteTimeSpan
Definition
Timeout.cs:5
System.Threading.Timeout
Definition
Timeout.cs:4
System.Data.Common.StorageType.TimeSpan
@ TimeSpan
System.ExceptionArgument.value
@ value
System
Net
Http
SocketsHttpHandler
Generated by
1.10.0