System.Net.ServicePointManager.DefaultConnectionLimit == 24 --> BUG?

前端 未结 1 444
耶瑟儿~
耶瑟儿~ 2020-12-16 17:56

When checking the System.Net.ServicePointManager.DefaultConnectionLimit in .Net 4 in my debugger, I see really high numbers. I see 24 on one machine and see 48 on another m

相关标签:
1条回答
  • 2020-12-16 18:20

    It's not a bug. It's propably 12 per CPU.

    The value comes from <connectionManagement> in your Web.config or Machine.config. If neither of files contains element it's probably configured by autoConfig=True setting at <processModel> element.

    0 讨论(0)
提交回复
热议问题