Integrate into build
[mono.git] / mcs / class / System.Web / System.Web.Configuration / AuthenticationMode.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 AuthenticationMode for a Web Application.
11         /// </summary>
12         public enum AuthenticationMode{
13                 Forms, 
14                 None,
15                 Passport, 
16                 Windows
17         }
18
19 } //namespace System.Web.Configuration