HttpModuleCollection.Get 方法

定义

HttpModuleCollection 中返回个别 IHttpModule 对象。

重载

Get(Int32)

HttpModuleCollection 中返回具有指定索引的 IHttpModule 对象。

Get(String)

HttpModuleCollection 中返回具有指定名称的 IHttpModule 对象。

Get(Int32)

HttpModuleCollection 中返回具有指定索引的 IHttpModule 对象。

public:
 System::Web::IHttpModule ^ Get(int index);
public System.Web.IHttpModule Get (int index);
member this.Get : int -> System.Web.IHttpModule
Public Function Get (index As Integer) As IHttpModule

参数

index
Int32

要从集合中返回的 IHttpModule 对象的索引。

返回

IHttpModule

index 参数指定的 IHttpModule 成员。

适用于

Get(String)

HttpModuleCollection 中返回具有指定名称的 IHttpModule 对象。

public:
 System::Web::IHttpModule ^ Get(System::String ^ name);
public System.Web.IHttpModule Get (string name);
member this.Get : string -> System.Web.IHttpModule
Public Function Get (name As String) As IHttpModule

参数

name
String

要检索的项的键。

返回

IHttpModule

name 参数指定的 IHttpModule 成员。

适用于