2003-11-25 Ben Maurer <bmaurer@users.sourceforge.net>
[mono.git] / mcs / class / System.Web / System.Web.Security / CookieProtection.cs
1 //
2 // System.Web.Security.CookieProtection
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
8 //
9
10 #if NET_1_2
11 namespace System.Web.Security {
12         public enum CookieProtection {
13                 None,
14                 Validation,
15                 Encryption,
16                 All
17         }
18 }
19 #endif
20