SystemWebSectionGroup 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
允许用户以编程方式访问配置文件的 system.web
组。 此类不能被继承。
public ref class SystemWebSectionGroup sealed : System::Configuration::ConfigurationSectionGroup
public sealed class SystemWebSectionGroup : System.Configuration.ConfigurationSectionGroup
type SystemWebSectionGroup = class
inherit ConfigurationSectionGroup
Public NotInheritable Class SystemWebSectionGroup
Inherits ConfigurationSectionGroup
- 继承
示例
下面的代码示例演示如何从与现有 Web 应用程序关联的配置文件中获取 SystemWebSectionGroup 对象。 可以使用此对象访问组中包含的 system.web
部分。
// Get the Web application configuration.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration(
"/aspnetTest");
// Get the <system.web> group.
SystemWebSectionGroup systemWeb =
(SystemWebSectionGroup)configuration.GetSectionGroup("system.web");
' Get the Web application configuration.
Dim configuration As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
"/aspnetTest")
' Get the <system.web> group.
Dim systemWeb As SystemWebSectionGroup = _
CType(configuration.GetSectionGroup( _
"system.web"), SystemWebSectionGroup)
注解
该 SystemWebSectionGroup 类引用 system.web
配置文件中的组。 可以使用此类型访问此组中包含的任何部分。
构造函数
SystemWebSectionGroup() |
创建 SystemWebSectionGroup 的新实例。 |
属性
AnonymousIdentification |
获取 |
Authentication |
获取 |
Authorization |
获取 |
BrowserCaps |
获取 |
ClientTarget |
获取 |
Compilation |
获取 |
CustomErrors |
获取 |
Deployment |
获取 |
DeviceFilters |
获取 |
FullTrustAssemblies |
获取 |
Globalization |
获取 |
HealthMonitoring |
获取 |
HostingEnvironment |
获取 |
HttpCookies |
获取 |
HttpHandlers |
获取 |
HttpModules |
获取 |
HttpRuntime |
获取 |
Identity |
获取 |
IsDeclarationRequired |
获取一个值,指示是否需要声明此 ConfigurationSectionGroup 对象。 (继承自 ConfigurationSectionGroup) |
IsDeclared |
获取一个值,指示是否已声明此 ConfigurationSectionGroup 对象。 (继承自 ConfigurationSectionGroup) |
MachineKey |
获取 |
Membership |
获取 |
MobileControls |
已过时。
获取 |
Name |
获取此 ConfigurationSectionGroup 对象的名称属性。 (继承自 ConfigurationSectionGroup) |
Pages |
获取 |
PartialTrustVisibleAssemblies |
获取 |
ProcessModel |
获取 |
Profile |
获取 |
Protocols |
获取 |
RoleManager |
获取 |
SectionGroupName |
获取与此 ConfigurationSectionGroup 关联的节组名称。 (继承自 ConfigurationSectionGroup) |
SectionGroups |
获取一个 ConfigurationSectionGroupCollection 对象,其中包含作为此 ConfigurationSectionGroup 对象的子对象的所有 ConfigurationSectionGroup 对象。 (继承自 ConfigurationSectionGroup) |
Sections |
获取一个 ConfigurationSectionCollection 对象,其中包含此 ConfigurationSection 对象中的所有 ConfigurationSectionGroup 对象。 (继承自 ConfigurationSectionGroup) |
SecurityPolicy |
获取 |
SessionState |
获取 |
SiteMap |
获取 |
Trace |
获取 |
Trust |
获取 |
Type |
获取或设置此 ConfigurationSectionGroup 对象的类型。 (继承自 ConfigurationSectionGroup) |
UrlMappings |
获取 |
WebControls |
获取 |
WebParts |
获取 |
WebServices |
获取 |
XhtmlConformance |
获取 |
方法
Equals(Object) |
确定指定对象是否等于当前对象。 (继承自 Object) |
ForceDeclaration() |
强制声明此 ConfigurationSectionGroup 对象。 (继承自 ConfigurationSectionGroup) |
ForceDeclaration(Boolean) |
强制声明此 ConfigurationSectionGroup 对象。 (继承自 ConfigurationSectionGroup) |
GetHashCode() |
作为默认哈希函数。 (继承自 Object) |
GetType() |
获取当前实例的 Type。 (继承自 Object) |
MemberwiseClone() |
创建当前 Object 的浅表副本。 (继承自 Object) |
ShouldSerializeSectionGroupInTargetVersion(FrameworkName) |
指示在为.NET Framework的指定目标版本序列化配置对象层次结构时,是否应序列化当前ConfigurationSectionGroup实例。 (继承自 ConfigurationSectionGroup) |
ToString() |
返回表示当前对象的字符串。 (继承自 Object) |