jellyfin/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs

20 lines
493 B
C#
Raw Normal View History

2020-08-19 08:31:45 -04:00
using System.Net;
using System.Net.Http;
namespace MediaBrowser.Common.Net
{
/// <summary>
/// Default http client handler.
/// </summary>
public class DefaultHttpClientHandler : HttpClientHandler
{
2020-08-19 09:09:07 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="DefaultHttpClientHandler"/> class.
/// </summary>
2020-08-19 08:31:45 -04:00
public DefaultHttpClientHandler()
{
2020-11-17 08:57:25 -05:00
AutomaticDecompression = DecompressionMethods.All;
2020-08-19 08:31:45 -04:00
}
}
}