ConfiguredObject.GetSection 方法
检索已配置对象的配置节的内容。
语法
ConfiguredObject.GetSection(SectionName, Section);
ConfiguredObject.GetSection SectionName, Section
参数设置
名称 | 描述 |
---|---|
SectionName |
一个 string 变量,包含要检索的配置节的名称(例如“BasicAuthenticationSection”)。 |
Section |
一个 ConfigurationSection 变量,其中放置配置节的内容。 |
返回值
此方法不返回值。
注解
可使用 GetSection
方法检索所需配置节的内容,并设置其可配置属性。
注意
GetSection
方法签名包含一个 [IN]
参数用于节名称,并包含一个 [OUT]
参数用于该方法返回的节对象。
示例
以下示例获取默认网站的 HTTP 错误部分,并显示其数组和非数组属性。
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Get the default Web site.
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")
' Get the HTTP errors section by using the GetSection method.
oSite.GetSection "HttpErrorsSection", oSection
' Display a heading.
WScript.Echo "=============================="
WScript.Echo "Http Errors Section Properties"
WScript.Echo "=============================="
' Display the HttpErrorsSection non-array properties.
For Each vProp In oSection.Properties_
If (vProp.Name <> "HttpErrors") And _
(vProp.Name <> "SectionInformation") Then
WScript.Echo vProp.Name & ": " & vProp.Value
End If
Next
WScript.Echo
' Display the HttpErrorsSection SectionInformation properties.
WScript.Echo "HttpErrorsSection.SectionInformation"
WScript.Echo "------------------------------------"
For Each vProp In oSection.SectionInformation.Properties_
WScript.Echo vProp.Name & ": " & vProp.Value
Next
WScript.Echo
' Display the contents of the HttpErrors array property.
WScript.Echo "HttpErrorsSection.HttpErrors"
WScript.Echo "----------------------------"
For Each oHttpErrorElement In oSection.HttpErrors
For Each vProp In oHttpErrorElement.Properties_
WScript.Echo vProp.Name & ": " & vProp.Value
Next
WScript.Echo
Next
要求
类型 | 描述 |
---|---|
客户端 | - IIS 7.0(在 Windows Vista 上) - IIS 7.5(在 Windows 7 上) - IIS 8.0(在 Windows 8 上) - IIS 10.0(在 Windows 10 上) |
服务器 | - IIS 7.0(在 Windows Server 2008 上) - IIS 7.5(在 Windows Server 2008 R2 上) - IIS 8.0(在 Windows Server 2012 上) - IIS 8.5(在 Windows Server 2012 R2 上) - IIS 10.0(在 Windows Server 2016 上) |
产品 | - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0 |
MOF 文件 | WebAdministration.mof |
另请参阅
ConfigurationSection 类
ConfiguredObject 类
HttpErrorElement 类
HttpErrorsSection 类