How to set port for webclient in c#? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T17:51:23Zhttp://stackoverflow.com/feeds/question/995495http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/995495/how-to-set-port-for-webclient-in-c1How to set port for webclient in c#?terranihttp://stackoverflow.com/users/1002402009-06-15T10:57:56Z2009-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#9955033Answer by SillyMonkey for How to set port for webclient in c#?SillyMonkeyhttp://stackoverflow.com/users/886002009-06-15T10:59:56Z2009-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#9955101Answer by Fredrik Mörk for How to set port for webclient in c#?Fredrik Mörkhttp://stackoverflow.com/users/936232009-06-15T11:01:43Z2009-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>