IsapiCgiRestrictionElement 类
表示 ISAPI 或通用网关接口 (CGI) 限制元素。
语法
class IsapiCgiRestrictionElement : CollectionElement
方法
此类不包含任何方法。
属性
下表列出了 IsapiCgiRestrictionElement
类公开的属性。
名称 | 描述 |
---|---|
Allowed |
一个读/写 boolean 值。 如果允许限制自动运行,则为 true ;否则为 false 。 默认为 false 。 |
Description |
string 值(读/写),包含映射的说明。 |
GroupId |
string 值(可选,读/写),标识限制所属的组。 通过此设置,你可以对限制进行分组,以便更轻松地进行管理。 |
Path |
string 值(必需,只读,非空),包含限制 .dll 或 .exe文件路径。 键属性。 |
子类
此类不包含子类。
注解
此类的实例包含在 IsapiCgiRestrictionSection 类的 IsapiCgiRestriction
数组属性中。
ISAPI 和 CGI 限制请求处理程序,能够实现在在服务器上执行动态内容。 这些限制是 CGI 文件 (.exe) 或 ISAPI 扩展 (.dll)。 默认情况下,包括 Asp.dll 和 Aspnet_isapi.dll。 如果 IIS 配置允许,可以添加自定义 ISAPI 或 CGI 限制。
请注意,如果在 ISAPI 模式下运行 IIS 7,则可以在 Web 服务器上使用 ISAPI 或 CGI 限制。 如果在集成模式下运行 IIS 7,此功能不可用。
示例
以下示例列出默认网站的所有 IsapiCgiRestrictionElement
实例。
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = _
GetObject("winmgmts:root\WebAdministration")
' Get the restriction section for the default Web site.
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")
oSite.GetSection "IsapiCgiRestrictionSection", oSection
' Display the path.
WScript.Echo "Path: " & oSection.Path
WScript.Echo
' Display all the ISAPI CGI restriction elements.
WScript.Echo "ISAPI CGI Restriction Elements"
WScript.Echo "------------------------------"
For Each oIsapiCgiRestrictionElement In _
oSection.IsapiCgiRestriction
WScript.Echo "GroupID: " & _
oIsapiCgiRestrictionElement.GroupID
WScript.Echo "Description: " & _
oIsapiCgiRestrictionElement.Description
WScript.Echo "Path: " & _
oIsapiCgiRestrictionElement.Path
WScript.Echo "Allowed: " & _
oIsapiCgiRestrictionElement.Allowed
WScript.Echo
Next
继承层次结构
IsapiCgiRestrictionElement
要求
类型 | 描述 |
---|---|
客户端 | - 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 |