Closed FLGMwt closed 9 months ago
Before ASP.NET Core, we configured connection limits and SSL protocols using the static ServicePointManager:
ServicePointManager
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11; ServicePointManager.DefaultConnectionLimit = 60;
ServicePointManager is no longer available and it looks like the only way to configure this is at the instantiation of the HttpClient.
HttpClient
I'm not quite sure what the configuration would look like, but given I hope #321 also gets in, it would have to be at initial setup.
cc @phillip-haydon there's a simple PR available fixing this issue #507
Before ASP.NET Core, we configured connection limits and SSL protocols using the static
ServicePointManager
:ServicePointManager
is no longer available and it looks like the only way to configure this is at the instantiation of theHttpClient
.I'm not quite sure what the configuration would look like, but given I hope #321 also gets in, it would have to be at initial setup.