HttpModulesSection Class
Assembly: System.Web (in system.web.dll)
The HttpModulesSection class provides a way to programmatically access and modify the httpModules section of a configuration file.
This type is part of a group that includes the HttpModuleAction and the HttpModuleActionCollection types.
Note: |
|---|
| The HttpModulesSection can read and write information from and to the related section of the configuration file according to the section property AllowDefinition whose value is Everywhere. |
| Topic | Location |
|---|---|
| How to: Create and Configure an HTTP Module | Configuring ASP .NET Web Applications |
| How to: Create and Configure an HTTP Module | Configuring ASP .NET Web Applications |
This example demonstrates how to specify values declaratively for attributes of the add element within the httpModules section, which can also be accessed as members of the HttpModulesSection class.
The following configuration file example shows how to specify values declaratively for the httpModules Element (ASP.NET Settings Schema) section.
<httpModules>
<add name="TimerModule"
type="Samples.Aspnet.Configuration.RequestTimeInterval, RequestTimeInterval Version=1.0.1557.23158, Culture=neutral,
PublicKeyToken=7bfb33146a87b52e, processorArchitecture=MSIL"/>
</httpModules>
The following code example demonstrates how to use the HttpModulesSection class.
Refer to the HTTP Module Configuration Sample for a complete example on how to build and configure an HTTP module.
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.HttpModulesSection
Note: