3

如何以编程方式设置 maxconnection 值?

这是我的 app.config 中的条目。

<system.net>
    <connectionManagement>
      <add address = "*" maxconnection = "100" />
    </connectionManagement>
  </system.net>

另外,如何以编程方式设置油门?

<serviceBehaviors>
  <behavior name="defaultServiceBehavior">
     <serviceThrottling maxConcurrentCalls="100" 
    maxConcurrentInstances="100" maxConcurrentSessions="100" />
4

1 回答 1

0

我正在寻找相同的设置。对于第一个,以下似乎符合要求?那对你有用吗?

ServicePointManager.DefaultConnectionLimit = 200;

以及 httpwebrequest 对象的以下内容

webrequest.ServicePoint.ConnectionLimit = 200;

下面的链接显示了节流编程的示例

https://www.oreilly.com/library/view/programming-wcf-services/9780596157210/ch04s08.html

于 2019-01-29T10:16:18.997 回答