CookieProtection.cs 265 B

1234567891011121314151617181920
  1. //
  2. // System.Web.Security.CookieProtection
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. namespace System.Web.Security {
  11. public enum CookieProtection {
  12. None,
  13. Validation,
  14. Encryption,
  15. All
  16. }
  17. }
  18. #endif