9 writes to PooledConnectionLifetime
Aspire.EndToEnd.Tests (1)
tests\Shared\WorkloadTesting\AspireProject.cs (1)
467handler.PooledConnectionLifetime = TimeSpan.FromSeconds(5);
Aspire.Workload.Tests (1)
tests\Shared\WorkloadTesting\AspireProject.cs (1)
467handler.PooledConnectionLifetime = TimeSpan.FromSeconds(5);
HttpStress (1)
Program.cs (1)
514PooledConnectionLifetime = connectionLifetime.HasValue ? TimeSpan.FromMilliseconds(connectionLifetime.Value) : Timeout.InfiniteTimeSpan,
Microsoft.DotNet.SignTool (1)
src\VerifySignatures.cs (1)
30private static readonly HttpClient client = new(new SocketsHttpHandler { PooledConnectionLifetime = TimeSpan.FromMinutes(10) });
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)
1701handler.PooledConnectionLifetime = TimeSpan.FromMilliseconds(servicePoint.ConnectionLeaseTimeout);
System.Net.WebSockets.Client (2)
System\Net\WebSockets\WebSocketHandle.Managed.cs (2)
264PooledConnectionLifetime = TimeSpan.Zero, 281handler.PooledConnectionLifetime = TimeSpan.Zero;
1 reference to PooledConnectionLifetime
Microsoft.Extensions.Http (1)
DependencyInjection\SocketsHttpHandlerBuilderExtensions.cs (1)
196PooledConnectionLifetime = ParseTimeSpan(config[nameof(SocketsHttpHandler.PooledConnectionLifetime)]),