Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
更改 ServicePointManager.DefaultConnectionLimit 是否仅影响当前进程或整个 .NET 平台。请提供来源。
设置属性ServicePointManager几乎就是这样做的——它设置了一些静态属性。(实际的代码比这更复杂,但我认为这无关紧要。)
ServicePointManager
这些属性在创建新ServicePoint对象时使用。
ServicePoint
由此得出的结论是,它们的影响与任何其他静态属性一样广泛——即一个 AppDomain。
虽然一个进程可以有多个 AppDomain,但大多数时候,每个进程只处理一个 AppDomain。所以,大多数时候,设置属性会影响整个过程。有时甚至没有。它当然不会影响其他进程。