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 物件模組。