MimeMapElement クラス
ファイル拡張子に関連付けられている MIME の種類を指定します。
構文
class MimeMapElement : CollectionElement
メソッド
このクラスにはメソッドが含まれていません。
プロパティ
次の表は、MimeMapElement
クラスによって公開されるプロパティの一覧です。
名前 | 説明 |
---|---|
FileExtension |
MimeType のファイル拡張子を含む、必須かつ一意の空でない読み取り専用の string 値。 キー プロパティ。 |
MimeType |
FileExtension の拡張子の MIME の種類を含む、必須の空でない読み取り/書き込みの string 値。 |
サブクラス
このクラスにはサブクラスが含まれていません。
解説
このクラスのインスタンスは、StaticContentSection クラスの StaticContent
配列プロパティに含まれています。
Note
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
継承階層
MimeMapElement
要件
型 | 説明 |
---|---|
クライアント | - Windows Vista 上の IIS 7.0 - Windows 7 上の IIS 7.5 - Windows 8 上の IIS 8.0 - Windows 10 上の IIS 10.0 |
[サーバー] | - Windows Server 2008 上の IIS 7.0 - Windows Server 2008 R2 上の IIS 7.5 - Windows Server 2012 上の IIS 8.0 - Windows Server 2012 R2 上の IIS 8.5 - Windows Server 2016 上の IIS 10.0 |
Product | - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0 |
MOF ファイル | WebAdministration.mof |