ConfigurationSectionWithCollection.Clear メソッド
構成セクションのコレクションからすべての要素をクリアします。
構文
ConfigurationSectionWithCollection.Clear(collectionName);
ConfigurationSectionWithCollection.Clear(collectionName)
Parameters
名前 | Definition |
---|---|
collectionName |
削除するコレクションの名前を格納する string 値。 |
戻り値
このメソッドは値を返しません。
例
次の例では、既定の Web サイトの既定のドキュメント (継承されたすべての既定のドキュメントを含む) をクリアします。 このコードにより、既定 Web サイトの Web.config ファイルの <system.webServer>
セクションに次の XML が追加されます。
<defaultDocument>
<files>
<clear />
</files>
</defaultDocument>
' 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 default documents section.
oSite.GetSection "DefaultDocumentSection", oDefaultDocumentSection
' Clear the default documents that are listed in the
' DefaultDocumentSection.Files.Files property.
oDefaultDocumentSection.Clear("Files.Files")
要件
型 | 説明 |
---|---|
クライアント | - 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 クラス
DefaultDocumentSection クラス
FileSettings クラス