Merge pull request #2916 from ludovic-henry/fix-40306
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / ProfileSection.cs
1 //
2 // System.Web.Configuration.ProfileSection
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2005 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 ProfileSection: ConfigurationSection
38         {
39                 static ConfigurationProperty automaticSaveEnabledProp;
40                 static ConfigurationProperty defaultProviderProp;
41                 static ConfigurationProperty enabledProp;
42                 static ConfigurationProperty inheritsProp;
43                 static ConfigurationProperty propertySettingsProp;
44                 static ConfigurationProperty providersProp;
45
46                 static ConfigurationPropertyCollection properties;
47                 
48                 static ProfileSection ()
49                 {
50                         automaticSaveEnabledProp = new ConfigurationProperty ("automaticSaveEnabled", typeof (bool), true);
51                         defaultProviderProp = new ConfigurationProperty ("defaultProvider", typeof (string),
52                                                                          "AspNetSqlProfileProvider");
53                         enabledProp = new ConfigurationProperty ("enabled", typeof (bool), true);
54                         inheritsProp = new ConfigurationProperty ("inherits", typeof (string), "");
55                         propertySettingsProp = new ConfigurationProperty ("properties", typeof (RootProfilePropertySettingsCollection));
56                         providersProp = new ConfigurationProperty ("providers", typeof (ProviderSettingsCollection));
57
58                         properties = new ConfigurationPropertyCollection ();
59                         properties.Add (automaticSaveEnabledProp);
60                         properties.Add (defaultProviderProp);
61                         properties.Add (enabledProp);
62                         properties.Add (inheritsProp);
63                         properties.Add (propertySettingsProp);
64                         properties.Add (providersProp);
65                 }
66                 
67                 [ConfigurationProperty ("automaticSaveEnabled", DefaultValue = true)]
68                 public bool AutomaticSaveEnabled {
69                         get { return (bool) base [automaticSaveEnabledProp]; }
70                         set { base [automaticSaveEnabledProp] = value; }
71                 }
72
73                 [ConfigurationProperty ("defaultProvider", DefaultValue = "AspNetSqlProfileProvider")]
74                 [StringValidator (MinLength = 1)]
75                 public string DefaultProvider {
76                         get { return (string) base [defaultProviderProp]; }
77                         set { base [defaultProviderProp] = value; }
78                 }
79
80                 [ConfigurationProperty ("enabled", DefaultValue = true)]
81                 public bool Enabled {
82                         get { return (bool) base [enabledProp]; }
83                         set { base [enabledProp] = value; }
84                 }
85
86                 [ConfigurationProperty ("inherits", DefaultValue = "")]
87                 public string Inherits {
88                         get { return (string) base [inheritsProp]; }
89                         set { base [inheritsProp] = value; }
90                 }
91
92                 [ConfigurationProperty ("properties")]
93                 public RootProfilePropertySettingsCollection PropertySettings {
94                         get {
95                                 return (RootProfilePropertySettingsCollection) base [propertySettingsProp];
96                         }
97                 }
98
99                 [ConfigurationProperty ("providers")]
100                 public ProviderSettingsCollection Providers {
101                         get {
102                                 return (ProviderSettingsCollection) base [providersProp];
103                         }
104                 }
105
106                 protected internal override ConfigurationPropertyCollection Properties {
107                         get { return properties; }
108                 }
109         }
110 }
111