up vote 1 down vote favorite
share [g+] share [fb]

I am trying to download a file using webclient in c#.

the remote port of the file location is 20114. How do I tell webclient to use 20114 port?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

set the url as http://www.website.com:20114/folder/file.ext

link|improve this answer
feedback

My spontaneous guess (without having tried it) would be to simply include it in the url:

WebClient client = new WebClient();
client.DownloadFile(@"http://host:20114/file.ext", localFilename);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.