How to set port for webclient in c#? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T17:51:23Z http://stackoverflow.com/feeds/question/995495 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/995495/how-to-set-port-for-webclient-in-c 1 How to set port for webclient in c#? terrani http://stackoverflow.com/users/100240 2009-06-15T10:57:56Z 2009-06-15T11:01:43Z <p>Hi,</p> <p>I am trying to download a file using webclient in c#.</p> <p>the remote port of the file location is 20114. How do I tell webclient to use 20114 port?</p> http://stackoverflow.com/questions/995495/how-to-set-port-for-webclient-in-c/995503#995503 3 Answer by SillyMonkey for How to set port for webclient in c#? SillyMonkey http://stackoverflow.com/users/88600 2009-06-15T10:59:56Z 2009-06-15T10:59:56Z <p>set the url as <a href="http://www.website.com:20114/folder/file.ext" rel="nofollow">http://www.website.com:20114/folder/file.ext</a></p> http://stackoverflow.com/questions/995495/how-to-set-port-for-webclient-in-c/995510#995510 1 Answer by Fredrik Mörk for How to set port for webclient in c#? Fredrik Mörk http://stackoverflow.com/users/93623 2009-06-15T11:01:43Z 2009-06-15T11:01:43Z <p>My spontaneous guess (without having tried it) would be to simply include it in the url:</p> <pre><code>WebClient client = new WebClient(); client.DownloadFile(@"http://host:20114/file.ext", localFilename); </code></pre>