共用方式為


SystemWebSectionGroup 類別

定義

允許使用者以程式的方式存取組態檔的 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
繼承
SystemWebSectionGroup

範例

下列程式碼範例示範如何從與現有 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

取得 anonymousIdentification 區段。

Authentication

取得 authentication 區段。

Authorization

取得 authorization 區段。

BrowserCaps

取得 browserCaps 區段。

ClientTarget

取得 clientTarget 區段。

Compilation

取得 compilation 區段。

CustomErrors

取得 customErrors 區段。

Deployment

取得 deployment 區段。

DeviceFilters

取得 deviceFilters 區段。

FullTrustAssemblies

取得 FullTrustAssemblies 區段。

Globalization

取得 globalization 區段。

HealthMonitoring

取得 healthMonitoring 區段。

HostingEnvironment

取得 hostingEnvironment 區段。

HttpCookies

取得 httpCookies 區段。

HttpHandlers

取得 httpHandlers 區段。

HttpModules

取得 httpModules 區段。

HttpRuntime

取得 httpRuntime 區段。

Identity

取得 identity 區段。

IsDeclarationRequired

取得值,指出是否需要這個 ConfigurationSectionGroup 物件宣告。

(繼承來源 ConfigurationSectionGroup)
IsDeclared

取得值,指出這個 ConfigurationSectionGroup 物件是否已宣告。

(繼承來源 ConfigurationSectionGroup)
MachineKey

取得 machineKey 區段。

Membership

取得 membership 區段。

MobileControls
已過時。

取得 mobileControls 區段。

Name

取得這個 ConfigurationSectionGroup 物件的名稱屬性。

(繼承來源 ConfigurationSectionGroup)
Pages

取得 pages 區段。

PartialTrustVisibleAssemblies

取得 PartialTrustVisibleAssemblies 區段。

ProcessModel

取得 processModel 區段。

Profile

取得 profile 區段。

Protocols

取得 protocols 區段。

RoleManager

取得 roleManager 區段。

SectionGroupName

取得與這個 ConfigurationSectionGroup 相關聯的區段群組名稱。

(繼承來源 ConfigurationSectionGroup)
SectionGroups

取得 ConfigurationSectionGroupCollection 物件,其包含的所有 ConfigurationSectionGroup 物件都是這個 ConfigurationSectionGroup 物件的子系。

(繼承來源 ConfigurationSectionGroup)
Sections

取得 ConfigurationSectionCollection 物件,其包含這個 ConfigurationSection 物件內的所有 ConfigurationSectionGroup 物件。

(繼承來源 ConfigurationSectionGroup)
SecurityPolicy

取得 securityPolicy 區段。

SessionState

取得 sessionState 區段。

SiteMap

取得 siteMap 區段。

Trace

取得 trace 區段。

Trust

取得 trust 區段。

Type

取得或設定這個 ConfigurationSectionGroup 物件的型別。

(繼承來源 ConfigurationSectionGroup)
UrlMappings

取得 urlMappings 區段。

WebControls

取得 webControls 區段。

WebParts

取得 webParts 區段。

WebServices

取得 webServices 區段。

XhtmlConformance

取得 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)

適用於