2 writes to _pooledConnectionIdleTimeout
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
115
_pooledConnectionIdleTimeout
= _pooledConnectionIdleTimeout,
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
234
_settings.
_pooledConnectionIdleTimeout
= value;
7 references to _pooledConnectionIdleTimeout
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (1)
951
TimeSpan pooledConnectionIdleTimeout = _poolManager.Settings.
_pooledConnectionIdleTimeout
;
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (1)
266
QuicConnection quicConnection = await ConnectHelper.ConnectQuicAsync(queueItem.Request, new DnsEndPoint(authority.IdnHost, authority.Port), _poolManager.Settings.
_pooledConnectionIdleTimeout
, _sslOptionsHttp3!, connection.StreamCapacityCallback, cts.Token).ConfigureAwait(false);
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (3)
74
(settings.
_pooledConnectionIdleTimeout
== TimeSpan.Zero ||
81
if (settings.
_pooledConnectionIdleTimeout
== Timeout.InfiniteTimeSpan)
90
TimeSpan timerPeriod = settings.
_pooledConnectionIdleTimeout
/ ScavengesPerIdle;
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
115
_pooledConnectionIdleTimeout =
_pooledConnectionIdleTimeout
,
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
225
get => _settings.
_pooledConnectionIdleTimeout
;