using System.Net; using System.Net.Http; namespace MediaBrowser.Common.Net { /// /// Default http client handler. /// public class DefaultHttpClientHandler : HttpClientHandler { /// /// Initializes a new instance of the class. /// public DefaultHttpClientHandler() { // TODO change to DecompressionMethods.All with .NET5 AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate; } } }