X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.Net.Cache%2FRequestCacheLevel.cs;h=7a20f5517c7df20d47f36dbef8e269875d55b338;hb=161d8652ab4b98ca5201a02b6bacc1e4148345af;hp=672a7eb37dd03ac38dcfb7073f196a512aba58ab;hpb=9d61782c6e2392d7ceec2006b35be582598a70ae;p=mono.git diff --git a/mcs/class/System/System.Net.Cache/RequestCacheLevel.cs b/mcs/class/System/System.Net.Cache/RequestCacheLevel.cs index 672a7eb37dd..7a20f5517c7 100644 --- a/mcs/class/System/System.Net.Cache/RequestCacheLevel.cs +++ b/mcs/class/System/System.Net.Cache/RequestCacheLevel.cs @@ -35,12 +35,13 @@ 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, } }