| 1234567891011121314151617181920 |
- //
- // System.Web.Security.CookieProtection
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- #if NET_1_2
- namespace System.Web.Security {
- public enum CookieProtection {
- None,
- Validation,
- Encryption,
- All
- }
- }
- #endif
|