8 references to HttpKeepAlivePingPolicy
Microsoft.Extensions.Http (2)
DependencyInjection\SocketsHttpHandlerBuilderExtensions.cs (2)
187public HttpKeepAlivePingPolicy? KeepAlivePingPolicy { get; init; } 213KeepAlivePingPolicy = ParseEnum<HttpKeepAlivePingPolicy>(config[nameof(SocketsHttpHandler.KeepAlivePingPolicy)])
System.Net.Http (6)
System\Net\Http\HttpHandlerDefaults.cs (2)
17public const HttpKeepAlivePingPolicy DefaultKeepAlivePingPolicy = HttpKeepAlivePingPolicy.Always;
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (2)
126private readonly HttpKeepAlivePingPolicy _keepAlivePingPolicy; 2111if (_keepAlivePingPolicy == HttpKeepAlivePingPolicy.WithActiveRequests)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
50internal HttpKeepAlivePingPolicy _keepAlivePingPolicy = HttpHandlerDefaults.DefaultKeepAlivePingPolicy;
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
350public HttpKeepAlivePingPolicy KeepAlivePingPolicy