ServicePointManager.DefaultConnectionLimit in .net core?

妖精的绣舞 提交于 2019-11-30 15:18:43

问题


I am porting a web api 2 service to .net core and I found this line in my old web api service.

ServicePointManager.DefaultConnectionLimit = int.MaxValue;

This line of code increases the connection limit. I don't know if it's for the computer or the framework or just the application. And after reading this answer on stackoverflow, I also realise that setting it to int.max may not be the best idea. However I would still like to have control over it in my new .net core service.

How do I modify/increase DefaultConnectionLimit in .net core. Also, How do I even know what's the default limit in .net core ? (if that's a valid question :) )


回答1:


In ASP.NET 5 apps, use WinHttpHandler.MaxConnectionsPerServer. Its default value is int.MaxValue.

For details, see the .NET Portability Analyzer from the Visual Studio Gallery and WinHttpHandler.MaxConnectionsPerServer on MSDN.



来源:https://stackoverflow.com/questions/36398474/servicepointmanager-defaultconnectionlimit-in-net-core

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!