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