timheuer / callisto

A control toolkit for Windows 8 XAML applications. Contains some UI controls to make it easier to create Windows UI style apps for the Windows Store in accordance with Windows UI guidelines.
http://timheuer.com/blog/archive/2012/05/31/introducing-callisto-a-xaml-toolkit-for-metro-apps.aspx
Other
338 stars 108 forks source link

Morten: Please add GZipWebClient #28

Closed aaronwro closed 12 years ago

aaronwro commented 12 years ago

enough said.

dotMorten commented 12 years ago

What do you mean? WinRT has GZip/Deflate built into the HttpClient. Just declare it this way: HttpClient client = new HttpClient(new HttpClientHandler() { AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip });

aaronwro commented 12 years ago

I didn't know that, thanks!