2005-11-24 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / SystemWebSectionGroup.cs
1 //
2 // System.Web.Configuration.SystemWebSectionGroup
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 #if NET_2_0
32
33 using System;
34 using System.Configuration;
35
36 namespace System.Web.Configuration
37 {
38         public sealed class SystemWebSectionGroup : ConfigurationSectionGroup
39         {
40                 [ConfigurationProperty ("anonymousIdentification")]
41                 public AnonymousIdentificationSection AnonymousIdentification {
42                         get { return (AnonymousIdentificationSection)Sections ["anonymousIdentification"]; }
43                 }
44
45                 [ConfigurationProperty ("authentication")]
46                 public AuthenticationSection Authentication {
47                         get { return (AuthenticationSection)Sections ["authentication"]; }
48                 }
49
50                 [ConfigurationProperty ("authorization")]
51                 public AuthorizationSection Authorization {
52                         get { return (AuthorizationSection)Sections ["authorization"]; }
53                 }
54
55                 [ConfigurationProperty ("browserCaps")]
56                 public DefaultSection BrowserCaps {
57                         get { return (DefaultSection)Sections ["browserCaps"]; }
58                 }
59
60                 [ConfigurationProperty ("clientTarget")]
61                 public ClientTargetSection ClientTarget {
62                         get { return (ClientTargetSection)Sections ["clientTarget"]; }
63                 }
64
65                 [ConfigurationProperty ("compilation")]
66                 public CompilationSection Compilation {
67                         get { return (CompilationSection)Sections ["compilation"]; }
68                 }
69
70                 [ConfigurationProperty ("customErrors")]
71                 public CustomErrorsSection CustomErrors {
72                         get { return (CustomErrorsSection)Sections ["customErrors"]; }
73                 }
74
75                 [ConfigurationProperty ("deployment")]
76                 public DeploymentSection Deployment {
77                         get { return (DeploymentSection)Sections ["deployment"]; }
78                 }
79
80                 [ConfigurationProperty ("deviceFilters")]
81                 public DefaultSection DeviceFilters {
82                         get { return (DefaultSection)Sections ["deviceFilters"]; }
83                 }
84
85                 [ConfigurationProperty ("globalization")]
86                 public GlobalizationSection Globalization {
87                         get { return (GlobalizationSection)Sections ["globalization"]; }
88                 }
89
90                 [ConfigurationProperty ("healthMonitoring")]
91                 public HealthMonitoringSection HealthMonitoring {
92                         get { return (HealthMonitoringSection)Sections ["healthMonitoring"]; }
93                 }
94
95 #if notyet
96                 [ConfigurationProperty ("hostingEnvironment")]
97                 public HostingEnvironmentSection HostingEnvironment {
98                         get { return (HostingEnvironmentSection)Sections ["hostingEnvironment"]; }
99                 }
100 #endif
101
102                 [ConfigurationProperty ("httpCookies")]
103                 public HttpCookiesSection HttpCookies {
104                         get { return (HttpCookiesSection)Sections ["httpCookies"]; }
105                 }
106
107                 [ConfigurationProperty ("httpHandlers")]
108                 public HttpHandlersSection HttpHandlers {
109                         get { return (HttpHandlersSection)Sections ["httpHandlers"]; }
110                 }
111
112                 [ConfigurationProperty ("httpModules")]
113                 public HttpModulesSection HttpModules {
114                         get { return (HttpModulesSection)Sections ["httpModules"]; }
115                 }
116
117                 [ConfigurationProperty ("httpRuntime")]
118                 public HttpRuntimeSection HttpRuntime {
119                         get { return (HttpRuntimeSection)Sections ["httpRuntime"]; }
120                 }
121
122                 [ConfigurationProperty ("identity")]
123                 public IdentitySection Identity {
124                         get { return (IdentitySection)Sections ["identity"]; }
125                 }
126
127                 [ConfigurationProperty ("machineKey")]
128                 public MachineKeySection MachineKey {
129                         get { return (MachineKeySection)Sections ["machineKey"]; }
130                 }
131
132                 [ConfigurationProperty ("membership")]
133                 public MembershipSection Membership {
134                         get { return (MembershipSection)Sections ["membership"]; }
135                 }
136
137                 [ConfigurationProperty ("mobileControls")]
138                 public ConfigurationSection MobileControls {
139                         get { return Sections ["MobileControls"]; }
140                 }
141
142                 [ConfigurationProperty ("pages")]
143                 public PagesSection Pages {
144                         get { return (PagesSection)Sections ["pages"]; }
145                 }
146
147                 public ProcessModelSection ProcessModel {
148                         get { return (ProcessModelSection)Sections ["processModel"]; }
149                 }
150
151                 [ConfigurationProperty ("profile")]
152                 public ProfileSection Profile {
153                         get { return (ProfileSection)Sections ["profile"]; }
154                 }
155
156                 [ConfigurationProperty ("protocols")]
157                 public DefaultSection Protocols {
158                         get { return (DefaultSection)Sections ["protocols"]; }
159                 }
160
161                 [ConfigurationProperty ("roleManager")]
162                 public RoleManagerSection RoleManager {
163                         get { return (RoleManagerSection)Sections ["roleManager"]; }
164                 }
165
166                 [ConfigurationProperty ("securityPolicy")]
167                 public SecurityPolicySection SecurityPolicy {
168                         get { return (SecurityPolicySection)Sections ["securityPolicy"]; }
169                 }
170
171                 [ConfigurationProperty ("sessionState")]
172                 public SessionStateSection SessionState {
173                         get { return (SessionStateSection)Sections ["sessionState"]; }
174                 }
175
176                 [ConfigurationProperty ("siteMap")]
177                 public SiteMapSection SiteMap {
178                         get { return (SiteMapSection)Sections ["siteMap"]; }
179                 }
180
181                 [ConfigurationProperty ("trace")]
182                 public TraceSection Trace {
183                         get { return (TraceSection)Sections ["trace"]; }
184                 }
185
186                 [ConfigurationProperty ("trust")]
187                 public TrustSection Trust {
188                         get { return (TrustSection)Sections ["trust"]; }
189                 }
190
191                 [ConfigurationProperty ("urlMappings")]
192                 public UrlMappingsSection UrlMappings {
193                         get { return (UrlMappingsSection)Sections ["urlMappings"]; }
194                 }
195
196                 [ConfigurationProperty ("webControls")]
197                 public WebControlsSection WebControls {
198                         get { return (WebControlsSection)Sections ["webControls"]; }
199                 }
200
201                 [ConfigurationProperty ("webParts")]
202                 public WebPartsSection WebParts {
203                         get { return (WebPartsSection)Sections ["webParts"]; }
204                 }
205
206 #if notyet
207                 [ConfigurationProperty ("webServices")]
208                 public WebServicesSection WebServices {
209                         get { return (WebServicesSection)Sections ["webServices"]; }
210                 }
211 #endif
212
213                 [ConfigurationProperty ("xhtmlConformance")]
214                 public XhtmlConformanceSection XhtmlConformance {
215                         get { return (XhtmlConformanceSection)Sections ["xhtmlConformance"]; }
216                 }
217         }
218 }
219
220 #endif