I am trying to do a request that accepts a compressed response
var request = (HttpWebRequest)HttpWebRequest.Create(requestUri); request.Headers.Add(HttpReque
I found the answer.
You can change the code to:
var request = (HttpWebRequest)HttpWebRequest.Create(requestUri); request.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
And you will have automatic decompression. No need to change the rest of the code.