Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FormsProtectionEnum.cs « System.Web.Configuration « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e94950e067e4e0b3244fdc2e5b2242a5a9b64149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* System.Web.Configuration
 * Authors:
 *   Leen Toelen (toelen@hotmail.com)
 *  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