VirtualDirectory 类 2

表示 IIS 虚拟目录。

语法

class VirtualDirectory : ConfiguredObject  

方法

下表列出了 VirtualDirectory 类公开的方法。

名称 描述
创建 创建虚拟目录。
GetAllSections (继承自 ConfiguredObject。)
GetSection (从 ConfiguredObject 继承。)
RevertToParent 将虚拟目录的配置值还原为其父目录的配置值。

属性

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

名称 描述
AllowSubDirConfig 一个读/写 boolean 值。 如果 IIS 在低于当前级别的内容目录中查找 Web.config 文件,则为 true;如果 IIS 不在低于当前级别的目录中查找这些文件,则为 false。 默认为 true
ApplicationPath 一个只读 string 值,包含虚拟目录所属的应用程序的路径。 一个键属性。
LogonMethod 一个读/写 sint32 枚举,指定用户在本地登录的方式。 登录类型将确定是否可以远程使用生成的令牌。 后文的“备注”部分列出了可能的值。
Password 一个读/写 string 值,指定用于访问虚拟目录的物理路径的加密密码。
Path 一个只读 string 值,包含虚拟目录路径。 一个键属性。
PhysicalPath 一个读/写 string 值,指定与虚拟目录关联的物理路径。
SiteName 一个只读 string 值,包含虚拟目录所属的网站的名称。 一个键属性。
UserName 一个读/写 string 值,指定有权访问虚拟目录中任何配置文件或内容的用户。 默认为 null

子类

此类不包含子类。

注解

下表列出了 LogonMethod 属性的可能值和关键字。 默认值为 3 (ClearText)。 有关详细信息,请参阅 LogonUserEx 函数。

关键字 说明
0 Interactive 此登录类型适用于将交互使用计算机的用户。
1 Batch 此登录类型适用于批处理服务器,无需用户直接干预即可代表用户执行进程。 不会缓存此登录类型的凭据。
2 Network 此登录类型适用于高性能服务器对明文密码进行身份验证。 不会缓存此登录类型的凭据。
3 ClearText 此登录类型保留身份验证包中的姓名和密码,从而允许服务器在模拟客户端时连接到其他网络服务器。

示例

以下示例设置默认网站的物理路径。

' Connect to the WMI WebAdministration namespace.  
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")  
' Get the root virtual directory for the default Web site.  
Set oVDir = oWebAdmin.Get(_   
"VirtualDirectory.SiteName='Default Web Site',ApplicationPath='/',Path='/'")  
  
' Set the physical path for the default Web site.  
oVDir.PhysicalPath = "C:\MyContent"  
oVDir.Put_  
  

继承层次结构

ConfiguredObject

VirtualDirectory

要求

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

另请参阅

ConfiguredObject 类
Object 类
LogonUserEx