HttpModulesSection クラス
ASP.NET モジュールが含まれています。
構文
class HttpModulesSection : ConfigurationSectionWithCollection
メソッド
次の表に、HttpModulesSection
クラスによって公開されるメソッドの一覧を示します。
名前 | 説明 |
---|---|
[追加] | (ConfigurationSectionWithCollection から継承。) |
Clear | (ConfigurationSectionWithCollection から継承。) |
Get | (ConfigurationSectionWithCollection から継承。) |
GetAllowDefinition | (ConfigurationSection から継承。) |
GetAllowLocation | (ConfigurationSection から継承。) |
削除 | (ConfigurationSectionWithCollection から継承。) |
RevertToParent | (ConfigurationSection から継承。) |
SetAllowDefinition | (ConfigurationSection から継承。) |
SetAllowLocation | (ConfigurationSection から継承。) |
プロパティ
次の表は、HttpModulesSection
クラスによって公開されるプロパティの一覧です。
名前 | 説明 |
---|---|
Location |
(ConfigurationSection から継承。)キー プロパティ。 |
HttpModules |
ASP.NET モジュールを含む HttpModuleAction 値の配列。 |
Path |
(ConfigurationSection から継承。)キー プロパティ。 |
SectionInformation |
(ConfigurationSection から継承。) |
サブクラス
このクラスにはサブクラスが含まれていません。
解説
HttpModulesSection
クラスに含まれるモジュールは ASP.NET に固有であり、Web.config ファイルの <system.web>
セクションにあります。 これらの各モジュールは、HttpModuleAction クラスのインスタンスによって表されます。
ModulesSection クラス内のモジュールは IIS 7 に関連しており、ApplicationHost.config ファイルの <system.webServer>
セクションにあります。 これらの各モジュールは、ModuleAction クラスのインスタンスによって表されます。
例
次の例は、HttpModulesSection
の各プロパティを表示します (HttpModules
プロパティに含まれる HttpModuleAction
値を含む)。
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Get the HttpModulesSection.
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")
oSite.GetSection "HttpModulesSection", oSection
' Display the Path and Location properties.
WScript.Echo "Path: " & oSection.Path
WScript.Echo "Location: " & oSection.Location
WScript.Echo
' Display the HttpModuleAction instances that are contained
' in the HttpModules property.
WScript.Echo "----------( Http Modules )----------"
Counter = 0
For Each oHttpModule In oSection.HttpModules
Counter = Counter + 1
WScript.Echo "[" & Counter & "] Name: " & oHttpModule.Name
WScript.Echo "Type: " & oHttpModule.Type
WScript.Echo
Next
継承階層
ConfigurationSectionWithCollection
HttpModulesSection
要件
型 | 説明 |
---|---|
クライアント | - Windows Vista 上の IIS 7.0 - Windows 7 上の IIS 7.5 - Windows 8 上の IIS 8.0 - Windows 10 上の IIS 10.0 |
[サーバー] | - Windows Server 2008 上の IIS 7.0 - Windows Server 2008 R2 上の IIS 7.5 - Windows Server 2012 上の IIS 8.0 - Windows Server 2012 R2 上の IIS 8.5 - Windows Server 2016 上の IIS 10.0 |
Product | - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0 |
MOF ファイル | WebAdministration.mof |
参照
ConfigurationSectionWithCollection クラス
HttpModuleAction クラス
ModuleAction クラス
ModulesSection クラス