Add user cinema mode setting

This commit is contained in:
Luke Pulverenti
2014-10-01 20:28:16 -04:00
parent 4aa959c1e2
commit 0690b4f2e0
73 changed files with 575 additions and 458 deletions

View File

@@ -91,7 +91,7 @@ namespace MediaBrowser.Common.Net
public bool LogErrorResponseBody { get; set; }
public bool EnableKeepAlive { get; set; }
public bool EnableUnconditionalCache { get; set; }
public CacheMode CacheMode { get; set; }
public TimeSpan CacheLength { get; set; }
private string GetHeaderValue(string name)
@@ -125,4 +125,10 @@ namespace MediaBrowser.Common.Net
RequestContentType = "application/x-www-form-urlencoded";
}
}
public enum CacheMode
{
None = 1,
Unconditional = 2
}
}