diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-27 11:02:16 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-27 11:02:16 -0400 |
| commit | 390f1653327e15248c0b0181b338c6a14d04732a (patch) | |
| tree | a8e4ba737ec5796e7332340da59ceba38e07620e /MediaBrowser.Common/Net/HttpRequestOptions.cs | |
| parent | 2d0c51071a952634d501c74c105e6b2bc48f856b (diff) | |
#280 - avoid an extra request to last fm by taking data from the MusicArtist entity
Diffstat (limited to 'MediaBrowser.Common/Net/HttpRequestOptions.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/HttpRequestOptions.cs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/MediaBrowser.Common/Net/HttpRequestOptions.cs b/MediaBrowser.Common/Net/HttpRequestOptions.cs index 7fb621b01..5579eb1ce 100644 --- a/MediaBrowser.Common/Net/HttpRequestOptions.cs +++ b/MediaBrowser.Common/Net/HttpRequestOptions.cs @@ -19,7 +19,7 @@ namespace MediaBrowser.Common.Net /// </summary> /// <value>The accept header.</value> public string AcceptHeader { get; set; } - + /// <summary> /// Gets or sets the cancellation token. /// </summary> @@ -45,13 +45,14 @@ namespace MediaBrowser.Common.Net public IProgress<double> Progress { get; set; } /// <summary> - /// Gets or sets a value indicating whether [enable response caching]. + /// Gets or sets a value indicating whether [enable HTTP compression]. /// </summary> - /// <value><c>true</c> if [enable response caching]; otherwise, <c>false</c>.</value> - public bool EnableResponseCache { get; set; } - + /// <value><c>true</c> if [enable HTTP compression]; otherwise, <c>false</c>.</value> public bool EnableHttpCompression { get; set; } + /// <summary> + /// Initializes a new instance of the <see cref="HttpRequestOptions"/> class. + /// </summary> public HttpRequestOptions() { EnableHttpCompression = true; |
