SiteContainsApplication Class1

提供网站与其应用程序之间的关系。

语法

class SiteContainsApplication : ObjectContainerAssociation  

方法

此类不包含任何方法。

属性

下表列出了 SiteContainsApplication 类公开的属性。

名称 描述
Container (继承自 ObjectContainerAssociation。)一个表示 IIS 网站的只读 Site 对象。 一个键属性。
Element (继承自 ObjectContainerAssociation。)一个表示 IIS 应用程序的只读 Application 对象。 一个键属性。

子类

此类不包含子类。

注解

若要实现此关联,请使用配置 API 来枚举给定站点的应用程序。

示例

以下示例演示如何使用 SiteContainsApplication 类检索网站中的所有应用程序。

' Connect to the WMI WebAdministration namespace.  
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")  
  
' Get the Web site.  
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")  
  
' Use the SiteContainsApplication class to return the set of  
' application instances in the 'Default Web Site' Web site.  
Set oApps = oSite.Associators_("SiteContainsApplication")  
For Each oApp In oApps  
    WScript.Echo oApp.Path   
Next  

继承层次结构

ObjectContainerAssociation

SiteContainsApplication

要求

类型 描述
客户端 - 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

另请参阅

Application 类
ObjectContainerAssociation 类
Site 类