update readme (#21797)
[mono-project.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / SystemWebSectionGroup.cs
blobd7a0cf141afe63f8752bef010a779c77757c2f25
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 //
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.
32 using System;
33 using System.Configuration;
34 using System.Web.Services.Configuration;
36 namespace System.Web.Configuration
38 public sealed class SystemWebSectionGroup : ConfigurationSectionGroup
40 [ConfigurationProperty ("anonymousIdentification")]
41 public AnonymousIdentificationSection AnonymousIdentification {
42 get { return (AnonymousIdentificationSection)Sections ["anonymousIdentification"]; }
45 [ConfigurationProperty ("authentication")]
46 public AuthenticationSection Authentication {
47 get { return (AuthenticationSection)Sections ["authentication"]; }
50 [ConfigurationProperty ("authorization")]
51 public AuthorizationSection Authorization {
52 get { return (AuthorizationSection)Sections ["authorization"]; }
55 [ConfigurationProperty ("browserCaps")]
56 public DefaultSection BrowserCaps {
57 get { return (DefaultSection)Sections ["browserCaps"]; }
60 [ConfigurationProperty ("clientTarget")]
61 public ClientTargetSection ClientTarget {
62 get { return (ClientTargetSection)Sections ["clientTarget"]; }
65 [ConfigurationProperty ("compilation")]
66 public CompilationSection Compilation {
67 get { return (CompilationSection)Sections ["compilation"]; }
70 [ConfigurationProperty ("customErrors")]
71 public CustomErrorsSection CustomErrors {
72 get { return (CustomErrorsSection)Sections ["customErrors"]; }
75 [ConfigurationProperty ("deployment")]
76 public DeploymentSection Deployment {
77 get { return (DeploymentSection)Sections ["deployment"]; }
80 [ConfigurationProperty ("deviceFilters")]
81 public DefaultSection DeviceFilters {
82 get { return (DefaultSection)Sections ["deviceFilters"]; }
85 [ConfigurationProperty ("globalization")]
86 public GlobalizationSection Globalization {
87 get { return (GlobalizationSection)Sections ["globalization"]; }
90 [ConfigurationProperty ("healthMonitoring")]
91 public HealthMonitoringSection HealthMonitoring {
92 get { return (HealthMonitoringSection)Sections ["healthMonitoring"]; }
95 [ConfigurationProperty ("hostingEnvironment")]
96 public HostingEnvironmentSection HostingEnvironment {
97 get { return (HostingEnvironmentSection)Sections ["hostingEnvironment"]; }
100 [ConfigurationProperty ("httpCookies")]
101 public HttpCookiesSection HttpCookies {
102 get { return (HttpCookiesSection)Sections ["httpCookies"]; }
105 [ConfigurationProperty ("httpHandlers")]
106 public HttpHandlersSection HttpHandlers {
107 get { return (HttpHandlersSection)Sections ["httpHandlers"]; }
110 [ConfigurationProperty ("httpModules")]
111 public HttpModulesSection HttpModules {
112 get { return (HttpModulesSection)Sections ["httpModules"]; }
115 [ConfigurationProperty ("httpRuntime")]
116 public HttpRuntimeSection HttpRuntime {
117 get { return (HttpRuntimeSection)Sections ["httpRuntime"]; }
120 [ConfigurationProperty ("identity")]
121 public IdentitySection Identity {
122 get { return (IdentitySection)Sections ["identity"]; }
125 [ConfigurationProperty ("machineKey")]
126 public MachineKeySection MachineKey {
127 get { return (MachineKeySection)Sections ["machineKey"]; }
130 [ConfigurationProperty ("membership")]
131 public MembershipSection Membership {
132 get { return (MembershipSection)Sections ["membership"]; }
135 [ConfigurationProperty ("mobileControls")]
136 [Obsolete ("System.Web.Mobile.dll is obsolete.")]
137 public ConfigurationSection MobileControls {
138 get { return Sections ["MobileControls"]; }
141 [ConfigurationProperty ("pages")]
142 public PagesSection Pages {
143 get { return (PagesSection)Sections ["pages"]; }
146 [ConfigurationProperty ("processModel")]
147 public ProcessModelSection ProcessModel {
148 get { return (ProcessModelSection)Sections ["processModel"]; }
151 [ConfigurationProperty ("profile")]
152 public ProfileSection Profile {
153 get { return (ProfileSection)Sections ["profile"]; }
156 [ConfigurationProperty ("protocols")]
157 public DefaultSection Protocols {
158 get { return (DefaultSection)Sections ["protocols"]; }
161 [ConfigurationProperty ("roleManager")]
162 public RoleManagerSection RoleManager {
163 get { return (RoleManagerSection)Sections ["roleManager"]; }
166 [ConfigurationProperty ("securityPolicy")]
167 public SecurityPolicySection SecurityPolicy {
168 get { return (SecurityPolicySection)Sections ["securityPolicy"]; }
171 [ConfigurationProperty ("sessionState")]
172 public SessionStateSection SessionState {
173 get { return (SessionStateSection)Sections ["sessionState"]; }
176 [ConfigurationProperty ("siteMap")]
177 public SiteMapSection SiteMap {
178 get { return (SiteMapSection)Sections ["siteMap"]; }
181 [ConfigurationProperty ("trace")]
182 public TraceSection Trace {
183 get { return (TraceSection)Sections ["trace"]; }
186 [ConfigurationProperty ("trust")]
187 public TrustSection Trust {
188 get { return (TrustSection)Sections ["trust"]; }
191 [ConfigurationProperty ("urlMappings")]
192 public UrlMappingsSection UrlMappings {
193 get { return (UrlMappingsSection)Sections ["urlMappings"]; }
196 [ConfigurationProperty ("webControls")]
197 public WebControlsSection WebControls {
198 get { return (WebControlsSection)Sections ["webControls"]; }
201 [ConfigurationProperty ("webParts")]
202 public WebPartsSection WebParts {
203 get { return (WebPartsSection)Sections ["webParts"]; }
206 [ConfigurationProperty ("webServices")]
207 public WebServicesSection WebServices {
208 get { return (WebServicesSection)Sections ["webServices"]; }
211 [ConfigurationProperty ("xhtmlConformance")]
212 public XhtmlConformanceSection XhtmlConformance {
213 get { return (XhtmlConformanceSection)Sections ["xhtmlConformance"]; }