BindingElement Class1

表示网站的绑定元素。

语法

class BindingElement : CollectionElement  

方法

此类不包含任何方法。

属性

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

名称 描述
BindingInformation 非空读/写 string 值,包含三个冒号分隔的字段,用于指定网站的绑定信息。 第一个字段是一个特定的 IP 地址或星号(星号表示所有未分配的 IP 地址)。 第二个字段是端口号,默认值为 80。 第三个字段是可选的主机头。
Protocol 必需的唯一非空读/写 string 值,用于指定站点绑定使用的协议。 默认值为“HTTP”。 键属性。

子类

此类不包含子类。

注解

此类的实例包含在 Site 类的 Bindings 数组属性中。

示例

以下示例检索 Web 服务器上的所有站点的绑定。

' Connect to the WMI WebAdministration namespace.  
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")  
  
' Get all Web site instances.  
Set oSites = oWebAdmin.InstancesOf("Site")  
  
' Display the name of each site and its bindings.  
For Each oSite In oSites  
  
    WScript.Echo oSite.Name  
  
    For Each objItem in oSite.Bindings  
        Wscript.Echo "Binding Info: " & objItem.BindingInformation  
        Wscript.Echo "Protocol: " & objItem.Protocol  
    Next  
    WScript.Echo  
Next  

继承层次结构

CollectionElement

BindingElement

要求

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

另请参阅

CollectionElement 类
SSLBinding 类
Site 类