次の方法で共有


HttpModuleCollection.Item[] プロパティ

定義

指定した IHttpModule オブジェクトを HttpModuleCollection から取得します。

オーバーロード

Item[Int32]

指定した数値インデックスを持つ IHttpModule オブジェクトを HttpModuleCollection から取得します。

Item[String]

指定した名前の IHttpModule オブジェクトを HttpModuleCollection から取得します。

Item[Int32]

指定した数値インデックスを持つ IHttpModule オブジェクトを HttpModuleCollection から取得します。

public:
 property System::Web::IHttpModule ^ default[int] { System::Web::IHttpModule ^ get(int index); };
public System.Web.IHttpModule this[int index] { get; }
member this.Item(int) : System.Web.IHttpModule
Default Public ReadOnly Property Item(index As Integer) As IHttpModule

パラメーター

index
Int32

コレクションから取得する IHttpModule オブジェクトのインデックスです。

プロパティ値

IHttpModule

index パラメーターで指定された IHttpModule オブジェクト モジュール。

適用対象

Item[String]

指定した名前の IHttpModule オブジェクトを HttpModuleCollection から取得します。

public:
 property System::Web::IHttpModule ^ default[System::String ^] { System::Web::IHttpModule ^ get(System::String ^ name); };
public System.Web.IHttpModule this[string name] { get; }
member this.Item(string) : System.Web.IHttpModule
Default Public ReadOnly Property Item(name As String) As IHttpModule

パラメーター

name
String

取得する項目のキー。

プロパティ値

IHttpModule

name パラメーターで指定された IHttpModule オブジェクト モジュール。

適用対象