MimeMapElement 类

指定与文件扩展名关联的 MIME 类型。

语法

class MimeMapElement : CollectionElement  

方法

此类不包含任何方法。

属性

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

名称 描述
FileExtension 一个 string 值,包含 MimeType 的文件扩展名,此值是必需的,并且必须唯一、非空且只读。 键属性。
MimeType 一个 string 值,包含 FileExtension 中扩展名的 MIME 类型,此值是必需的,并且必需非空且只读。

子类

此类不包含子类。

注解

此类的实例包含在 StaticContentSection 类的 StaticContent 数组属性中。

注意

IIS 仅为 MimeMapElement 类指定的 MIME 类型和文件扩展名组合提供静态内容。 MIME 映射告知静态文件处理程序如何返回特定类型的请求。

示例

以下示例列出了服务器级别的 ApplicationHost.config 文件中的文件扩展名及其关联的 MIME 映射。

' Connect to the WMI WebAdministration namespace.  
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")  
  
' Get the <staticContent> section in ApplicationHost.config.  
Set oSection = oWebAdmin.Get( _  
    "StaticContentSection.Path='MACHINE/WEBROOT/APPHOST',Location=''")  
  
' List the MIME maps by using the StaticContent property of the StaticContentSection class.  
For Each oMimeMapElement In oSection.StaticContent  
    WScript.Echo "File Extension: " & oMimeMapElement.FileExtension  
    WScript.Echo "Mime Type: " & oMimeMapElement.MimeType  
    WScript.Echo  
Next  

继承层次结构

CollectionElement

MimeMapElement

要求

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