diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-06-15 22:47:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-15 22:47:20 -0400 |
| commit | 74b57185f698b8330c820f3d01d7554417a391bb (patch) | |
| tree | ee9f2d61c1a6e6c058576f3996bf43df9e88cace /MediaBrowser.Common/Net/HttpRequestOptions.cs | |
| parent | bd5697625d8510a7430e5e1974d90a557b4d5976 (diff) | |
| parent | 37d7db4bc459f30b9c0d415e72b320590a5328a2 (diff) | |
Merge pull request #1850 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Common/Net/HttpRequestOptions.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/HttpRequestOptions.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/HttpRequestOptions.cs b/MediaBrowser.Common/Net/HttpRequestOptions.cs index 75368a5fc..1a7f414a7 100644 --- a/MediaBrowser.Common/Net/HttpRequestOptions.cs +++ b/MediaBrowser.Common/Net/HttpRequestOptions.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Net; using System.Threading; namespace MediaBrowser.Common.Net @@ -16,6 +17,8 @@ namespace MediaBrowser.Common.Net /// <value>The URL.</value> public string Url { get; set; } + public DecompressionMethods? DecompressionMethod { get; set; } + /// <summary> /// Gets or sets the accept header. /// </summary> |
