2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Web / System.Web.Security / CookieProtection.cs
index c4934a1f457a345adc96c591a7fd0613cb0a8a4b..b1f343045ed8afe7e268c63abe2c10813ed1fd83 100644 (file)
 #if NET_2_0
 namespace System.Web.Security {
        public enum CookieProtection {
-               None,
-               Validation,
-               Encryption,
-               All
+               None = 0,
+               Validation = 1,
+               Encryption = 2,
+               All = 3
        }
 }
 #endif