以下是我正在使用的代码:
string url = @"https://www.google.co.uk/";
WebClient wc = new WebClient();
string info = wc.DownloadString(url);
运行时,例外
"ConfigurationErrorsException: Error creating the Web Proxy specified in the
'system.net/defaultProxy' configuration section."
和
"SocketException: An invalid argument was supplied"
发生。
虽然我觉得第二个例外可能只是我做错了,但我对第一个感到困惑。我已经查看了StackOverflow上的其他问题,这些问题似乎是关于app.config文件的。我试过添加
<system.net>
<defaultProxy enabled="false" useDefaultCredentials="false">
</defaultProxy>
到这个文件,但我不知道在哪里放它,甚至它会解决问题(它没有)。程序存储在网络驱动器上(其他人认为相关),我可以把它放到外部驱动器上,但我无法访问C驱动器(我在其他地方看到的解决方案)。
我特别关注this问题,但无法解决我的问题。