Does HttpClient use the same ServicePoint Connection Limit as HttpWebRequest?
Thanks
Does HttpClient use the same ServicePoint Connection Limit as HttpWebRequest?
Thanks
The answer is not complete. It depends on implementation. In .net core ServicePointManager.DefaultConnectionLimit setting is not used, HttpClientHandler.MaxConnectionsPerServer should be used instead.
It uses the same ServicePointManager so the answer is yes.
You can change the limit programmatically though if you want, see this