mscorlib(4.0.0.0) API with additions
HttpCacheAgeControl.cs
1 namespace System.Net.Cache
2 {
4  public enum HttpCacheAgeControl
5  {
7  None = 0,
9  MinFresh = 1,
11  MaxAge = 2,
13  MaxStale = 4,
20  }
21 }
Content can be taken from the cache if the time remaining before expiration is greater than or equal ...
HttpCacheAgeControl
Specifies the meaning of time values that control caching behavior for resources obtained using T:Sys...
Content can be taken from the cache after it has expired, until the time specified with this value el...
P:System.Net.Cache.HttpRequestCachePolicy.MaxAge and P:System.Net.Cache.HttpRequestCachePolicy....
P:System.Net.Cache.HttpRequestCachePolicy.MaxAge and P:System.Net.Cache.HttpRequestCachePolicy....