Merge pull request #2735 from xmcclure/early-lookup-addr
[mono.git] / mcs / class / System.Web / System.Web.Security / CookieProtection.cs
index c4934a1f457a345adc96c591a7fd0613cb0a8a4b..f552d677a145a233e6d505784fa67072091e3454 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 namespace System.Web.Security {
        public enum CookieProtection {
-               None,
-               Validation,
-               Encryption,
-               All
+               None = 0,
+               Validation = 1,
+               Encryption = 2,
+               All = 3
        }
 }
-#endif