次の方法で共有


HttpHandlerActionCollection.Add(HttpHandlerAction) メソッド

定義

コレクションに HttpHandlerAction オブジェクトを追加します。

public:
 void Add(System::Web::Configuration::HttpHandlerAction ^ httpHandlerAction);
public void Add (System.Web.Configuration.HttpHandlerAction httpHandlerAction);
member this.Add : System.Web.Configuration.HttpHandlerAction -> unit
Public Sub Add (httpHandlerAction As HttpHandlerAction)

パラメーター

httpHandlerAction
HttpHandlerAction

コレクションに追加する HttpHandlerAction オブジェクト。

例外

追加する HttpHandlerAction オブジェクトが既にコレクションに存在しているか、またはコレクションが読み取り専用です。

次のコード例は、オブジェクトを HttpHandlerAction 作成してコレクションに追加する方法を示しています。

// Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction(
    "Calculator.custom", 
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler", 
    "GET", 
    true));
' Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction( _
    "Calculator.custom", _
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler", _
    "GET", _
    true))

注釈

このメソッドを使用する前に、オブジェクトを HttpHandlerAction 作成し、適切な名前と型で初期化する必要があります。 その後、先ほど作成したオブジェクトをコレクションに追加できます。

注意

ASP.NET は、最初にアプリケーションのプライベート Bin ディレクトリでハンドラー アセンブリ DLL を検索し、次にシステム アセンブリ キャッシュ内を検索します。

コレクションには、同じ Verb プロパティと Path プロパティをHttpHandlerAction持つオブジェクトをまだ含めてはいけません。

適用対象