HttpModuleCollection.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 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 オブジェクトのインデックスです。
プロパティ値
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
取得する項目のキー。
プロパティ値
name
パラメーターで指定された IHttpModule オブジェクト モジュール。