gpt4 book ai didi

c# - 使用c#从代理服务器下载文件

转载 作者:行者123 更新时间:2023-11-30 14:34:04 25 4
gpt4 key购买 nike

我想使用代理连接下载文件。我的示例代码是:

        WebClient client = new WebClient();
WebProxy wp = new WebProxy("url_proxy_server");
//wp.Credentials = new NetworkCredential("id", "pass", "domain");
client.Proxy = wp;
client.DownloadFile("http:mylink", "Save Path");

这是下载的正确模式吗?如何设置端口号?

最佳答案

使用另一个构造函数(String、Int32)

WebProxy wp = new WebProxy("http://contoso", 80);

http://msdn.microsoft.com/en-us/library/xfsh37cx.aspx

关于c# - 使用c#从代理服务器下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14692201/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com