diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-06 15:31:57 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-06 15:31:57 -0400 |
| commit | c568f352eb4ff006777a22b805dd68594ca89775 (patch) | |
| tree | 6176b279ebe559ce10a982b753d7e6a5de418a0d /MediaBrowser.Common/Net/HttpRequestOptions.cs | |
| parent | 72b98c288446019123356c45afd00e1d59083e2d (diff) | |
replaced http client cache with longer lived cache
Diffstat (limited to 'MediaBrowser.Common/Net/HttpRequestOptions.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/HttpRequestOptions.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/HttpRequestOptions.cs b/MediaBrowser.Common/Net/HttpRequestOptions.cs index 77cb8b3df..f257b1975 100644 --- a/MediaBrowser.Common/Net/HttpRequestOptions.cs +++ b/MediaBrowser.Common/Net/HttpRequestOptions.cs @@ -43,5 +43,11 @@ namespace MediaBrowser.Common.Net /// </summary> /// <value>The progress.</value> public IProgress<double> Progress { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether [enable response caching]. + /// </summary> + /// <value><c>true</c> if [enable response caching]; otherwise, <c>false</c>.</value> + public bool EnableResponseCache { get; set; } } } |
