19 lines
481 B
C#
19 lines
481 B
C#
|
using System.Net;
|
|||
|
using System.Net.Http;
|
|||
|
|
|||
|
namespace MediaBrowser.Common.Net
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Default http client handler.
|
|||
|
/// </summary>
|
|||
|
public class DefaultHttpClientHandler : HttpClientHandler
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
public DefaultHttpClientHandler()
|
|||
|
{
|
|||
|
// TODO change to DecompressionMethods.All with .NET5
|
|||
|
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|