MaxConnections and App.config question

2020-07-21 04:52发布

问题:

I have a multipart downloader, and to get it working I'm using this app.config

<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v2.0.50727"/></startup>
<system.net>
<connectionManagement>
    <add address="*" maxconnection="65000" />
</connectionManagement>
</system.net>
</configuration>

How can I put that file into my executable or somehow set this param internally?

回答1:

You can use:

ServicePointManager.DefaultConnectionLimit = 65000;

http://msdn.microsoft.com/en-us/library/system.net.servicepointmanager.defaultconnectionlimit.aspx



标签: c# c#-2.0