我发现ServicePointManager很适合检查特定的域,但是它需要一个URI来缩小范围。如果 公开了当前正在进行的所有连接及其并发连接计数的列表,那么我的问题就会得到解决。Uri uri = new Uri("http://www.google.com");
ServicePoint sp = ServicePointManager.FindServicePoint也许我已经没有可用的连接了,因为我已经超过了来自ServicePointManager的96个可用,这就是我的瓶颈。虽然不
在static构造函数代码中,我有以下内容:ServicePointManager.Expect100Continue= false;
我做了一些搜索,ServicePointManager在.NET核心中不再可用,现在应该使用WinHttpHandler ()。我的问题是,ServicePointManager到底是什么,正在设置的那些属性是什么?WinHttpHandler不是static as Service