MaxConnections and App.config Questions

I have a multi-user bootloader and I use this app.config to work

<?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 this file in my executable file or somehow set this parameter inside?

+3
source share
1 answer
+5
source

Source: https://habr.com/ru/post/1761779/


All Articles