Limit concurrent HttpWebRequests

Is there a limit on the number of concurrent HttpWebRequests.NET allowing at one time?

+1
source share
2 answers

I'm not sure about the general limit, but, of course, there is a limit on the number of simultaneous connections to a single host name.

It can be configured in the <connectionManagement>app.config file element .

+2
source

All Articles