百度了一下,發現了個文章Timeouts When Making Web Requests in .NET,
裡面寫到:
Each time you create a request, there is a System.Net.ServicePoint assigned to it. ServicePoint then tries to find a connection which will serve a given request. Each write and read operation on a connection is performed by a ConnectStream instance. Connections are pooled and their number is by default limited to two connections per IP address. You may configure the maximum number of connections per IP address or DNS name in the application configuration file (section http://system.netconnectionManagementadd), e.g.: &
&
&
&http://www.wg.net.pl" maxconnection = "4" /&>
&
&
&
&