45f7095af99522b1cddf3525cd1ae3b6347de2c3
[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 #if notyet
51                 [ConfigurationProperty ("authorization")]
52                 public AuthorizationSection Authorization {
53                         get { return (AuthorizationSection)Sections ["authorization"]; }
54                 }
55 #endif
56
57 #if notyet
58                 [ConfigurationProperty ("browserCaps")]
59                 public DefaultSection BrowserCaps {
60                         get { return (DefaultSection)Sections ["browserCaps"]; }
61                 }
62 #endif
63
64 #if notyet
65                 [ConfigurationProperty ("clientTarget")]
66                 public ClientTargetSection ClientTarget {
67                         get { return (ClientTargetSection)Sections ["clientTarget"]; }
68                 }
69 #endif
70
71                 [ConfigurationProperty ("compilation")]
72                 public CompilationSection Compilation {
73                         get { return (CompilationSection)Sections ["compilation"]; }
74                 }
75
76 #if notyet
77                 [ConfigurationProperty ("customErrors")]
78                 public CustomErrorsSection CustomErrors {
79                         get { return (CustomErrorsSection)Sections ["customErrors"]; }
80                 }
81 #endif
82
83 #if notyet
84                 [ConfigurationProperty ("deployment")]
85                 public DeploymentSection Deployment {
86                         get { return (DeploymentSection)Sections ["deployment"]; }
87                 }
88 #endif
89
90 #if notyet
91                 [ConfigurationProperty ("deviceFilters")]
92                 public DefaultSection DeviceFilters {
93                         get { return (DefaultSection)Sections ["deviceFilters"]; }
94                 }
95 #endif
96
97 #if notyet
98                 [ConfigurationProperty ("globalization")]
99                 public GlobalizationSection Globalization {
100                         get { return (GlobalizationSection)Sections ["globalization"]; }
101                 }
102 #endif
103
104 #if notyet
105                 [ConfigurationProperty ("healthMonitoring")]
106                 public HealthMonitoringSection HealthMonitoring {
107                         get { return (HealthMonitoringSection)Sections ["healthMonitoring"]; }
108                 }
109 #endif
110
111 #if notyet
112                 [ConfigurationProperty ("hostingEnvironment")]
113                 public HostingEnvironmentSection HostingEnvironment {
114                         get { return (HostingEnvironment)Sections ["hostingEnvironment"]; }
115                 }
116 #endif
117
118 #if notyet
119                 [ConfigurationProperty ("httpCookies")]
120                 public HttpCookiesSection HttpCookies {
121                         get { return (HttpCookiesSection)Sections ["httpCookies"]; }
122                 }
123 #endif
124
125                 [ConfigurationProperty ("httpHandlers")]
126                 public HttpHandlersSection HttpHandlers {
127                         get { return (HttpHandlersSection)Sections ["httpHandlers"]; }
128                 }
129
130                 [ConfigurationProperty ("httpModules")]
131                 public HttpModulesSection HttpModules {
132                         get { return (HttpModulesSection)Sections ["httpModules"]; }
133                 }
134
135 #if notyet
136                 [ConfigurationProperty ("httpRuntime")]
137                 public HttpRuntimeSection HttpRuntime {
138                         get { return (HttpRuntimeSection)Sections ["httpRuntime"]; }
139                 }
140 #endif
141
142 #if notyet
143                 [ConfigurationProperty ("identity")]
144                 public IdentitySection Identity {
145                         get { return (IdentitySection)Sections ["identity"]; }
146                 }
147 #endif
148
149 #if notyet
150                 [ConfigurationProperty ("machineKey")]
151                 public MachineKeySection MachineKey {
152                         get { return (MachineKeySection)Sections ["machineKey"]; }
153                 }
154 #endif
155
156                 [ConfigurationProperty ("membership")]
157                 public MembershipSection Membership {
158                         get { return (MembershipSection)Sections ["membership"]; }
159                 }
160
161                 [ConfigurationProperty ("mobileControls")]
162                 public ConfigurationSection MobileControls {
163                         get { return Sections ["MobileControls"]; }
164                 }
165
166                 [ConfigurationProperty ("pages")]
167                 public PagesSection Pages {
168                         get { return (PagesSection)Sections ["pages"]; }
169                 }
170
171 #if notyet
172                 public ProcessModelSection ProcessModel {
173                         get { return (ProcessModelSection)Sections ["processModel"]; }
174                 }
175 #endif
176
177                 [ConfigurationProperty ("profile")]
178                 public ProfileSection Profile {
179                         get { return (ProfileSection)Sections ["profile"]; }
180                 }
181
182 #if notyet
183                 [ConfigurationProperty ("protocols")]
184                 public DefaultSection Protocols {
185                         get { return (DefaultSection)Sections ["protocols"]; }
186                 }
187 #endif
188
189 #if notyet
190                 [ConfigurationProperty ("roleManager")]
191                 public RoleManagerSection RoleManager {
192                         get { return (RoleManagerSection)Sections ["roleManager"]; }
193                 }
194 #endif
195
196 #if notyet
197                 [ConfigurationProperty ("securityPolicy")]
198                 public SecurityPolicySection SecurityPolicy {
199                         get { return (SecurityPolicySection)Sections ["securityPolicy"]; }
200                 }
201 #endif
202
203 #if notyet
204                 [ConfigurationProperty ("sessionState")]
205                 public SessionStateSection SessionState {
206                         get { return (SessionStateSection)Sections ["sessionState"]; }
207                 }
208 #endif
209
210                 [ConfigurationProperty ("siteMap")]
211                 public SiteMapSection SiteMap {
212                         get { return (SiteMapSection)Sections ["siteMap"]; }
213                 }
214
215 #if notyet
216                 [ConfigurationProperty ("trace")]
217                 public TraceSection Trace {
218                         get { return (TraceSection)Sections ["trace"]; }
219                 }
220 #endif
221
222 #if notyet
223                 [ConfigurationProperty ("trust")]
224                 public TrustSection Trust {
225                         get { return (TrustSection)Sections ["trust"]; }
226                 }
227 #endif
228
229 #if notyet
230                 [ConfigurationProperty ("urlMappings")]
231                 public UrlMappingsSection UrlMappings {
232                         get { return (UrlMappingsSection)Sections ["urlMappings"]; }
233                 }
234 #endif
235
236 #if notyet
237                 [ConfigurationProperty ("webControls")]
238                 public WebControlsSection WebControls {
239                         get { return (WebControlsSection)Sections ["webControls"]; }
240                 }
241 #endif
242
243 #if notyet
244                 [ConfigurationProperty ("webParts")]
245                 public WebPartsSection WebParts {
246                         get { return (WebPartsSection)Sections ["webParts"]; }
247                 }
248 #endif
249
250 #if notyet
251                 [ConfigurationProperty ("webServices")]
252                 public WebServicesSection WebServices {
253                         get { return (WebServicesSection)Sections ["webServices"]; }
254                 }
255 #endif
256
257 #if notyet
258                 [ConfigurationProperty ("xhtmlConformance")]
259                 public XhtmlConformanceSection XhtmlConformance {
260                         get { return (XhtmlConformanceSection)Sections ["xhtmlConformance"]; }
261                 }
262 #endif
263         }
264 }
265
266 #endif