次の方法で共有


HttpHandlerAction クラス

ASP.NET HTTP ハンドラーを表します。

構文

class HttpHandlerAction : CollectionElement  

メソッド

このクラスにはメソッドが含まれていません。

プロパティ

次の表は、HttpHandlerAction クラスによって公開されるプロパティの一覧です。

名前 説明
Path 1 つの URL またはワイルドカード文字列のパスを含む、読み取り専用の string 値。 キー プロパティ。
Type HTTP ハンドラーのマネージド型を指定する読み取り/書き込みの string 値。 ASP.NET は、最初にアプリケーションのプライベート \Bin ディレクトリでハンドラー アセンブリ DLL を検索し、次にシステム アセンブリ キャッシュで検索します。 注: 型参照は次のように形成します (角かっこ内の項目は必須ではありません): <名前空間>.<型名>, <アセンブリ名>[,] [Version=x,] [Culture=y,] [PublicKeyToken=z] (例: "ExampleNamespace.ExampleType, Example.Assembly, Version=%ASSEMBLY_VERSION%, Culture=neutral, PublicKeyToken=%MICROSOFT_PUBLICKEY%")。
Validate 読み取り/書き込みの boolean 値。 一致する要求が到着するまで ASP.NET がハンドラー クラスの読み込みを待機する場合は true。それ以外の場合は false。 既定値は、true です。
Verb HTTP 動詞のコンマ区切りリストを指定する読み取り専用の string 値 (例: "GET, PUT, POST")。 ワイルドカード ("*") は、すべての動詞を表します。 キー プロパティ。

サブクラス

このクラスにはサブクラスが含まれていません。

解説

このクラスのインスタンスは、HttpHandlersSection クラスの HttpHandlers プロパティに含まれています。

HttpHandlerAction クラスによって表される HTTP ハンドラーは ASP.NET に固有であり、Web.config ファイルの <system.web> セクションにあります。 これらのハンドラーは、HttpHandlersSection クラスに含まれています。

HandlerAction クラスによって表される HTTP ハンドラーは IIS 7 に関連しており、ApplicationHost.config ファイルの <system.webServer> セクションにあります。 これらのハンドラーは、HandlersSection クラスに含まれています。

次の例は、HttpHandersSection オブジェクトの HttpHandlers プロパティに含まれている HttpHandlerAction インスタンスを表示します。

' Connect to the WMI WebAdministration namespace.  
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")  
  
' Get the HttpHandlersSection.  
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")  
oSite.GetSection "HttpHandlersSection", oSection  
  
' Display the HttpHandlerAction instances contained in the  
' HttpHandlers property of HttpHandlersSection.  
For Each oHttpHandler In oSection.HttpHandlers  
     Counter = Counter + 1  
     WScript.Echo "[" & Counter & "] Path: " & oHttpHandler.Path  
     WScript.Echo "Type: " & oHttpHandler.Type  
     WScript.Echo "Validate: " & oHttpHandler.Validate  
     WScript.Echo "Verb: " & oHttpHandler.Verb  
     WScript.Echo  
Next  
  

継承階層

CollectionElement

HttpHandlerAction

要件

説明
クライアント - 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

参照

CollectionElement クラス
HandlerAction クラス
HandlersSection クラス
HttpHandlersSection クラス