次の方法で共有


ConfiguredObject.GetSection メソッド

構成されたオブジェクトの構成セクションのコンテンツを取得します。

構文

ConfiguredObject.GetSection(SectionName, Section);  
ConfiguredObject.GetSection SectionName, Section  

Parameters

件名 説明
SectionName 取得する構成セクションの名前 ("BasicAuthenticationSection" など) を含む string 変数。
Section 構成セクションのコンテンツを配置する ConfigurationSection 変数。

戻り値

このメソッドは値を返しません。

解説

GetSection メソッドを使用して、目的の構成セクションのコンテンツを取得し、その構成可能なプロパティを設定できます。

Note

GetSection メソッド シグネチャには、セクション名の [IN] パラメーターと、メソッドが返すセクション オブジェクトの [OUT] パラメーターが含まれています。

次の例では、既定の Web サイトの 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  
  

要件

説明
クライアント - 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

参照

ConfigurationSection クラス
ConfiguredObject クラス
HttpErrorElement クラス
HttpErrorsSection クラス