diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-01 21:24:14 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-01 21:24:14 -0500 |
| commit | ad52d8b5d96bea85c17f37da7ff3334164f8d4a4 (patch) | |
| tree | 1011a8fb901bfc8422f66f69fa6ee2effc6362fe /MediaBrowser.Server.Mono/Native/HttpClientFactory.cs | |
| parent | 42a2522637d1772381eecee0d32ed3ef60fa3c73 (diff) | |
fixes #640 - Add management filters
Diffstat (limited to 'MediaBrowser.Server.Mono/Native/HttpClientFactory.cs')
| -rw-r--r-- | MediaBrowser.Server.Mono/Native/HttpClientFactory.cs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/MediaBrowser.Server.Mono/Native/HttpClientFactory.cs b/MediaBrowser.Server.Mono/Native/HttpClientFactory.cs deleted file mode 100644 index 0fceab060..000000000 --- a/MediaBrowser.Server.Mono/Native/HttpClientFactory.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Net.Http; - -namespace MediaBrowser.ServerApplication.Native -{ - /// <summary> - /// Class HttpClientFactory - /// </summary> - public static class HttpClientFactory - { - /// <summary> - /// Gets the HTTP client. - /// </summary> - /// <param name="enableHttpCompression">if set to <c>true</c> [enable HTTP compression].</param> - /// <returns>HttpClient.</returns> - public static HttpClient GetHttpClient(bool enableHttpCompression) - { - return new HttpClient() - { - Timeout = TimeSpan.FromSeconds(20) - }; - } - } -} |
