HttpModuleCollection.Item[] 속성

정의

에서 지정된 IHttpModule 개체를 HttpModuleCollection가져옵니다.

오버로드

Name Description
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.

적용 대상

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.

적용 대상