HttpModuleCollection Class
Provides a way to index and retrieve a collection of IHttpModule objects.
Assembly: System.Web (in System.Web.dll)
System.Collections.Specialized::NameObjectCollectionBase
System.Web::HttpModuleCollection
| Name | Description | |
|---|---|---|
![]() | AllKeys | Gets a string array containing all the keys (module names) in the HttpModuleCollection. |
![]() | Count | Gets the number of key/value pairs contained in the NameObjectCollectionBase instance.(Inherited from NameObjectCollectionBase.) |
![]() | Item[Int32] | Gets the IHttpModule object with the specified numerical index from the HttpModuleCollection. |
![]() | Item[String^] | Gets the IHttpModule object with the specified name from the HttpModuleCollection. |
![]() | Keys | Gets a NameObjectCollectionBase::KeysCollection instance that contains all the keys in the NameObjectCollectionBase instance.(Inherited from NameObjectCollectionBase.) |
| Name | Description | |
|---|---|---|
![]() | CopyTo(Array^, Int32) | Copies members of the module collection to an Array, beginning at the specified index of the array. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Get(Int32) | Returns the IHttpModule object with the specified index from the HttpModuleCollection. |
![]() | Get(String^) | Returns the IHttpModule object with the specified name from the HttpModuleCollection. |
![]() | GetEnumerator() | Returns an enumerator that iterates through the NameObjectCollectionBase.(Inherited from NameObjectCollectionBase.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetKey(Int32) | Returns the key (name) of the IHttpModule object at the specified numerical index. |
![]() | GetObjectData(SerializationInfo^, StreamingContext) | Implements the ISerializable interface and returns the data needed to serialize the NameObjectCollectionBase instance.(Inherited from NameObjectCollectionBase.) |
![]() | GetType() | |
![]() | OnDeserialization(Object^) | Implements the ISerializable interface and raises the deserialization event when the deserialization is complete.(Inherited from NameObjectCollectionBase.) |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | ICollection::CopyTo(Array^, Int32) | Copies the entire NameObjectCollectionBase to a compatible one-dimensional Array, starting at the specified index of the target array.(Inherited from NameObjectCollectionBase.) |
![]() ![]() | ICollection::IsSynchronized | Gets a value indicating whether access to the NameObjectCollectionBase object is synchronized (thread safe).(Inherited from NameObjectCollectionBase.) |
![]() ![]() | ICollection::SyncRoot | Gets an object that can be used to synchronize access to the NameObjectCollectionBase object.(Inherited from NameObjectCollectionBase.) |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast<TResult>() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType<TResult>() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |
The following code example demonstrates the AllKeys property and the GetKey and CopyTo methods of the HttpModuleCollection class. The example gets the application object for the current request from the current HttpContext object. It then extracts the HttpModuleCollection object from the application instance and displays the names of the IHttpModule objects.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.




