<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - HTTP Download</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - HTTP Download</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Sat, 18 May 2013 19:16:13 GMT</pubDate>
	<lastBuildDate>Sat, 18 May 2013 19:16:13 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>4</c9:totalResults>
	<c9:pageCount>-4</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - HTTP Download</title>
		<description><![CDATA[<p>Hi&nbsp;everyone:</p><p>As part of my current project I'm working on using C#.&nbsp; My assigment involves to download files (some of them quite large) from an HTTP server, I know this is not rocket rocket science specially in .net world.</p><p>So while I can succesfully download &nbsp;the files, my issue is that no method I've tried including the built in WebClient class can match the speed when I try to download the same file using IE or any other web browser.</p><p>Of course the question is if any of you guys how the browsers download the files and how can I implement such a method in C#?</p><p>&nbsp;</p><p>Thanx in advance,</p><p>Raptor</p><p>&nbsp;</p><p>PS: Yes I've googled/binged this to no success so far.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/HTTP-Download/7c1c0042120b4db0bb2fa07f001fd674#7c1c0042120b4db0bb2fa07f001fd674</link>
		<pubDate>Fri, 29 Jun 2012 01:55:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/HTTP-Download/7c1c0042120b4db0bb2fa07f001fd674#7c1c0042120b4db0bb2fa07f001fd674</guid>
		<dc:creator>raptor3676</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/raptor3676/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - HTTP Download</title>
		<description><![CDATA[<p>Use&nbsp;</p><p>using System.Net;<br>...&nbsp;</p><p>WebClient wc = new WebClient();<br>wc.DownloadFile(httpHostName, localFileName);</p><p>&nbsp;</p><p>Under the hood this is using the same mechanism to download the files as Internet Explorer (WinInet/WinHttp).</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/HTTP-Download/8cd2fe2f08ad4d2b8337a07f008cc0e8#8cd2fe2f08ad4d2b8337a07f008cc0e8</link>
		<pubDate>Fri, 29 Jun 2012 08:32:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/HTTP-Download/8cd2fe2f08ad4d2b8337a07f008cc0e8#8cd2fe2f08ad4d2b8337a07f008cc0e8</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - HTTP Download</title>
		<description><![CDATA[<p>And in case WebClient is not enough (rarely the case), you can always resort to <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx">HttpWebRequest</a>.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/HTTP-Download/cb9f432e20a5487487d4a083012a4f74#cb9f432e20a5487487d4a083012a4f74</link>
		<pubDate>Tue, 03 Jul 2012 18:06:06 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/HTTP-Download/cb9f432e20a5487487d4a083012a4f74#cb9f432e20a5487487d4a083012a4f74</guid>
		<dc:creator>Den Delimarsky</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DennisDel/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - HTTP Download</title>
		<description><![CDATA[<p>also you may need to check on buffer sizes .....&nbsp;&nbsp;&nbsp; i bet the browser does some tuning that your app does not do.</p><p>for example if the http stream is coming back with 4 meg chunks then the client buffer size should be some multiple of that value so that it does not have to alloc more storage while downloading.</p><p>stuff like that can make a huge difference in perf.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/HTTP-Download/461d81d2c75841f59c92a084007355e0#461d81d2c75841f59c92a084007355e0</link>
		<pubDate>Wed, 04 Jul 2012 06:59:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/HTTP-Download/461d81d2c75841f59c92a084007355e0#461d81d2c75841f59c92a084007355e0</guid>
		<dc:creator>figuerres</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/figuerres/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>