.net 当试图通过代码检查互联网连接时,操作超时错误,在另一台电脑上工作正常

cgh8pdjw  于 2023-04-13  发布在  .NET
关注(0)|答案(1)|浏览(79)

我正在使用此代码检查我的C#代码中的Internet连接。
System. out. println();
字节[]数据=工作站.下载数据(“http://www.google.com“);
它在另一台电脑上工作正常(每次返回结果),但在我的电脑上(windows 7,64位)有时会显示“操作超时错误”(System.Net.WebException)。

wyyhbhjk

wyyhbhjk1#

终于有了解决办法。

ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
ServicePointManager.DefaultConnectionLimit = 9999;

相关问题