다음을 통해 공유


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 개체 모듈입니다.

적용 대상