I am trying to do a request that accepts a compressed response
var request = (HttpWebRequest)HttpWebRequest.Create(requestUri);
request.Headers.Add(HttpRequestHeader.AcceptEncoding, "gzip,deflate");
I wonder if when I add the second line I will have to handle the decompression manually.