I want to use RestSharp to test if gzip is working on my web server, so I send a request and I inspect the response.
response.ContentEncoding = "", and there is no Content-Encoding in response.Headers either. If I go to the same URL in my browser, it is gzipped, but using RestSharp I see no signs of it.
I should add that I have tried adding different combinations of Accept, Accept-Encoding, Accept-Language and User-Agent headers to my HTTP request without it helping.
Does RestSharp somehow cause the response not be gzipped, or does it just hide it?