| 12345678910111213141516171819 |
- /* System.Web.Configuration
- * Authors:
- * Leen Toelen ([email protected])
- * Copyright (C) 2001 Leen Toelen
- */
- namespace System.Web.Configuration {
- /// <summary>
- /// Defines the method used for securing web forms.
- /// </summary>
- public enum FormsProtectionEnum{
- All,
- Encryption,
- None,
- Validation
- }
- } //namespace System.Web.Configuration
|