2002-02-21 Gaurav Vaish <gvaish@iitk.ac.in>
[mono.git] / mcs / class / System.Web / System.Web.Configuration / FormsProtectionEnum.cs
1 /* System.Web.Configuration
2  * Authors:
3  *   Leen Toelen (toelen@hotmail.com)
4  *  Copyright (C) 2001 Leen Toelen
5 */
6
7 namespace System.Web.Configuration {
8
9         /// <summary>
10         /// Defines the method used for securing web forms.
11         /// </summary>
12         public enum FormsProtectionEnum{
13                 All, 
14                 Encryption, 
15                 None, 
16                 Validation
17         }
18
19 } //namespace System.Web.Configuration