mscorlib(4.0.0.0) API with additions
RequestCacheLevel.cs
1 namespace System.Net.Cache
2 {
4  public enum RequestCacheLevel
5  {
7  Default,
11  CacheOnly,
15  Revalidate,
17  Reload,
20  }
21 }
Satisfies a request by using the server. The response might be saved in the cache....
Satisfies a request for a resource from the cache if the resource is available; otherwise,...
Satisfies a request by using the server. No entries are taken from caches, added to caches,...
Satisfies a request using the locally cached resource; does not send a request for an item that is no...
Never satisfies a request by using resources from the cache and does not cache resources....
Compares the copy of the resource in the cache with the copy on the server. If the copy on the server...
RequestCacheLevel
Specifies caching behavior for resources obtained using T:System.Net.WebRequest and its derived class...
The default setting for this enumeration, which is currently F:System.GCCollectionMode....