Merge pull request #1404 from woodsb02/mono-route
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / AuthenticationSection.cs
1 //
2 // System.Web.Configuration.AuthenticationSection
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // (C) 2004 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31
32 using System;
33 using System.Configuration;
34
35 namespace System.Web.Configuration
36 {
37         public sealed class AuthenticationSection: ConfigurationSection
38         {
39                 static ConfigurationPropertyCollection properties;
40                 static ConfigurationProperty formsProp;
41                 static ConfigurationProperty passportProp;
42                 static ConfigurationProperty modeProp;
43                 
44                 static AuthenticationSection ()
45                 {
46                         formsProp = new ConfigurationProperty ("forms", typeof(FormsAuthenticationConfiguration), null,
47                                                                null,
48                                                                PropertyHelper.DefaultValidator,
49                                                                ConfigurationPropertyOptions.None);
50                         passportProp = new ConfigurationProperty ("passport", typeof(PassportAuthentication), null,
51                                                                   null,
52                                                                   PropertyHelper.DefaultValidator,
53                                                                   ConfigurationPropertyOptions.None);
54                         modeProp = new ConfigurationProperty ("mode", typeof(AuthenticationMode), AuthenticationMode.Windows,
55                                                               new GenericEnumConverter (typeof (AuthenticationMode)),
56                                                               PropertyHelper.DefaultValidator,
57                                                               ConfigurationPropertyOptions.None);
58
59                         properties = new ConfigurationPropertyCollection ();
60                         properties.Add (formsProp);
61                         properties.Add (passportProp);
62                         properties.Add (modeProp);
63                 }
64                 
65                 public AuthenticationSection ()
66                 {
67                 }
68
69                 protected internal override void Reset (ConfigurationElement parentElement)
70                 {
71                         base.Reset (parentElement);
72                 }
73
74                 [ConfigurationProperty ("forms")]
75                 public FormsAuthenticationConfiguration Forms {
76                         get { return (FormsAuthenticationConfiguration) base [formsProp]; }
77                 }
78                 
79                 [ConfigurationProperty ("passport")]
80                 [Obsolete ("This property is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")]
81                 public PassportAuthentication Passport {
82                         get { return (PassportAuthentication) base [passportProp]; }
83                 }
84                 
85                 [ConfigurationProperty ("mode", DefaultValue = "Windows")]
86                 public AuthenticationMode Mode {
87                         get { return (AuthenticationMode) base [modeProp]; }
88                         set { base [modeProp] = value; }
89                 }
90                 
91                 protected internal override ConfigurationPropertyCollection Properties {
92                         get { return properties; }
93                 }
94
95         }
96 }
97