如何在c#中为webclient设置端口?

时间:2009-06-15 10:57:56

标签: c# webclient port

我正在尝试使用c#中的webclient下载文件。

文件位置的远程端口是20114.如何告诉webclient使用20114端口?

2 个答案:

答案 0 :(得分:6)

答案 1 :(得分:3)

我的自发猜测(没有尝试过)只是将其包含在网址中:

WebClient client = new WebClient();
client.DownloadFile(@"http://host:20114/file.ext", localFilename);