Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / class / System / System.Net.Cache / RequestCacheLevel.cs
index 672a7eb37dd03ac38dcfb7073f196a512aba58ab..3b78221f39c628e4513257923ebece013d64d86f 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 namespace System.Net.Cache 
 {
        public enum RequestCacheLevel
        {
+               Default = 0x00,
                BypassCache = 0x01,
-               CacheIfAvailable = 0x03,
                CacheOnly = 0x02,
-               Default = 0x00,
-               NoCacheNoStore = 0x05,
-               Reload = 0x04
+               CacheIfAvailable = 0x03,
+               Revalidate = 0x04,
+               Reload = 0x05,
+               NoCacheNoStore = 0x06,
        }
 }
 
-#endif