diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-04-21 13:53:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-21 13:53:03 +0200 |
| commit | 18cf030c778cf88bbdd9c9a8fe58bc504aa5433a (patch) | |
| tree | 133bc168f7fa81e14182b99921b451ab3375ea42 /MediaBrowser.Common/Net/DefaultHttpClientHandler.cs | |
| parent | 48ed4b016c43cdb9b18f864a031b5b652a88904a (diff) | |
| parent | 500c2e5224f0b242cdcbeb0da9176f4e856185e6 (diff) | |
Merge pull request #5866 from Bond-009/httpmsghandler
Switch from HttpClientHandler to SocketsHttpHandler
Diffstat (limited to 'MediaBrowser.Common/Net/DefaultHttpClientHandler.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/DefaultHttpClientHandler.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs b/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs deleted file mode 100644 index f1c5f2477..000000000 --- a/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Net; -using System.Net.Http; - -namespace MediaBrowser.Common.Net -{ - /// <summary> - /// Default http client handler. - /// </summary> - public class DefaultHttpClientHandler : HttpClientHandler - { - /// <summary> - /// Initializes a new instance of the <see cref="DefaultHttpClientHandler"/> class. - /// </summary> - public DefaultHttpClientHandler() - { - AutomaticDecompression = DecompressionMethods.All; - } - } -} |
