I have a trouble:
ASP.NET 4.0 has the class System.Net.ServicePointManager
, but I can't find it in .NET core.
How to find it?
I have a trouble:
ASP.NET 4.0 has the class System.Net.ServicePointManager
, but I can't find it in .NET core.
How to find it?
it looks like it is currently not supported. For more information, please take a look at here
Currently, there is no way to control connection level properties for TCP connections in the .NET Core stack except for some small properties on HttpClientHandler like MaxConnectionsPerServer.
EDIT: from the blog post on ASP.NET Core 2.0 Features
The Kestrel web server has new features that make it more suitable as an Internet-facing server. We’ve added a number of server constraint configuration options in the KestrelServerOptions class’s new Limits property. You can now add limits for the following:
- Maximum client connections
- Maximum request body size
- Minimum request body data rate