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

AuthenticationMode.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: 1bc1d9e9a3634e232c34d187c37b08e4744993bf (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 AuthenticationMode for a Web Application.
	/// </summary>
	public enum AuthenticationMode{
		Forms, 
		None,
		Passport, 
		Windows
	}

} //namespace System.Web.Configuration