HttpModuleCollection.Item[String] Свойство
Определение
Возвращает указанный объект IHttpModule из коллекции HttpModuleCollection.Gets the specified IHttpModule object from the HttpModuleCollection.
Перегрузки
Item[Int32] |
Возвращает объект IHttpModule с указанным числовым индексом из коллекции HttpModuleCollection.Gets the IHttpModule object with the specified numerical index from the HttpModuleCollection. |
Item[String] |
Получает объект IHttpModule с указанным именем из коллекции HttpModuleCollection.Gets the IHttpModule object with the specified name from the HttpModuleCollection. |
Item[Int32]
Возвращает объект IHttpModule с указанным числовым индексом из коллекции HttpModuleCollection.Gets the IHttpModule object with the specified numerical index from the 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.The index of the IHttpModule object to retrieve from the collection.
Значение свойства
Модуль объекта IHttpModule, заданный параметром index
.The IHttpModule object module specified by the index
parameter.
Item[String]
Получает объект IHttpModule с указанным именем из коллекции HttpModuleCollection.Gets the IHttpModule object with the specified name from the 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
Ключ получаемого элемента.The key of the item to be retrieved.
Значение свойства
Модуль объекта IHttpModule, заданный параметром name
.The IHttpModule object module specified by the name
parameter.