GlobalModulesSection 类
公开 IIS 全局模块的配置设置。
语法
class GlobalModulesSection : ConfigurationSectionWithCollection
方法
下表列出了 GlobalModulesSection
类公开的方法。
名称 | 说明 |
---|---|
添加 | (继承自 ConfigurationSectionWithCollection。) |
清除 | (从 ConfigurationSectionWithCollection 继承。) |
Get | (从 ConfigurationSectionWithCollection 继承。) |
GetAllowDefinition | (继承自 ConfigurationSection。) |
GetAllowLocation | (从 ConfigurationSection 继承。) |
删除 | (从 ConfigurationSectionWithCollection 继承。) |
RevertToParent | (从 ConfigurationSection 继承。) |
SetAllowDefinition | (从 ConfigurationSection 继承。) |
SetAllowLocation | (从 ConfigurationSection 继承。) |
属性
下表列出了 GlobalModulesSection
类公开的属性。
名称 | 描述 |
---|---|
GlobalModules |
GlobalModuleElement 对象的数组。 |
Location |
(继承自 ConfigurationSection 。)一个键属性。 |
Path |
(继承自 ConfigurationSection 。)一个键属性。 |
SectionInformation |
(从 ConfigurationSection 继承。) |
子类
此类不包含子类。
注解
ApplicationHost.config 文件中的 <globalModules>
节指定服务器级别的本机模块。 通过将这些模块的名称添加到 ApplicationHost.config 或 Web.config 文件中所需配置级别的 <modules>
节中,可以启用这些模块。 在 WMI 中,您可以使用 ModulesSection 类的 Add
方法来实现这一点。
示例
以下示例列出了 <globalModules>
节中的模块。
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Get the ApplicationHost.config <globalModules> section.
Set oSection = oWebAdmin.Get( _
"GlobalModulesSection.Path=" & _
"'MACHINE/WEBROOT/APPHOST/',Location=''")
' Display the path.
WScript.Echo
WScript.Echo "Path: " & oSection.Path
WScript.Echo
' Display the global modules.
WScript.Echo "Global Modules"
WScript.Echo "--------------"
For Each oGMElement In oSection.GlobalModules
WScript.Echo "Module: " & oGMElement.Name
WScript.Echo "Image: " & oGMElement.Image
WScript.Echo "PreCondition: " & oGMElement.PreCondition
WScript.Echo
Next
继承层次结构
ConfigurationSectionWithCollection
GlobalModulesSection
要求
类型 | 描述 |
---|---|
客户端 | - IIS 7.0(在 Windows Vista 上) - 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 |
产品 | - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0 |
MOF 文件 | WebAdministration.mof |
另请参阅
ConfigurationSection 类
ConfigurationSectionWithCollection 类
GlobalModuleElement 类
ModulesSection 类