6 writes to PooledConnectionLifetime
HttpStress (1)
Program.cs (1)
514PooledConnectionLifetime = connectionLifetime.HasValue ? TimeSpan.FromMilliseconds(connectionLifetime.Value) : Timeout.InfiniteTimeSpan,
Microsoft.Extensions.Http (2)
DefaultHttpMessageHandlerBuilder.cs (1)
76handler.PooledConnectionLifetime = lifetime;
DependencyInjection\SocketsHttpHandlerBuilderExtensions.cs (1)
78handler.PooledConnectionLifetime = config.PooledConnectionLifetime.Value;
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
1699handler.PooledConnectionLifetime = TimeSpan.FromMilliseconds(servicePoint.ConnectionLeaseTimeout);
System.Net.WebSockets.Client (2)
System\Net\WebSockets\WebSocketHandle.Managed.cs (2)
263PooledConnectionLifetime = TimeSpan.Zero, 280handler.PooledConnectionLifetime = TimeSpan.Zero;
1 reference to PooledConnectionLifetime
Microsoft.Extensions.Http (1)
DependencyInjection\SocketsHttpHandlerBuilderExtensions.cs (1)
196PooledConnectionLifetime = ParseTimeSpan(config[nameof(SocketsHttpHandler.PooledConnectionLifetime)]),