标签: c# httpclient
HttpClient是否使用与HttpWebRequest相同的ServicePoint连接限制?
由于
答案 0 :(得分:1)
它使用相同的ServicePointManager,所以答案是肯定的。
如果需要,您可以通过编程方式更改限制,请参阅this
答案 1 :(得分:1)
答案不完整。这取决于实现。 在未使用.net核心ServicePointManager.DefaultConnectionLimit的设置中,应改为使用HttpClientHandler.MaxConnectionsPerServer。
https://blogs.msdn.microsoft.com/timomta/2017/10/23/controlling-the-number-of-outgoing-connections-from-httpclient-net-core-or-full-framework/