2 writes to _keepAlivePingDelay
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
123_keepAlivePingDelay = _keepAlivePingDelay,
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
322_settings._keepAlivePingDelay = value;
7 references to _keepAlivePingDelay
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (1)
588private bool Http2KeepAlivePingEnabled => Settings._keepAlivePingDelay != Timeout.InfiniteTimeSpan;
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
166_keepAlivePingDelay = TimeSpanToMs(_pool.Settings._keepAlivePingDelay);
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (3)
78settings._keepAlivePingDelay == Timeout.InfiniteTimeSpan; 127if (_settings._keepAlivePingDelay != Timeout.InfiniteTimeSpan) 129long heartBeatInterval = (long)Math.Max(1000, Math.Min(_settings._keepAlivePingDelay.TotalMilliseconds, _settings._keepAlivePingTimeout.TotalMilliseconds) / 4);
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
123_keepAlivePingDelay = _keepAlivePingDelay,
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
313get => _settings._keepAlivePingDelay;