vote up 1 vote down star

Hi,

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?

flag

2 Answers

vote up 3 vote down check

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

link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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