HttpModuleAction Class
Assembly: System.Web (in system.web.dll)
The HttpModuleAction class provides a way to programmatically access and modify the add element of the httpModules section of a configuration file.
The HttpModuleAction type is part of a group that includes the HttpModuleActionCollection, collection, and the HttpModulesSection types.
| 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 several attributes of the add element of the httpModules section, which can also be accessed as members of the HttpModuleAction class.
The following configuration file example shows how to specify values declaratively for the httpModules section.
Refer to the HTTP Module Configuration Sample to see how to build and configure an HTTP module.
<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 shows how to use the HttpModuleAction class.
' Get the Web application configuration. Dim configuration As System.Configuration.Configuration = _ WebConfigurationManager.OpenWebConfiguration( _ "/aspnetTest") ' Get the section. Dim httpModulesSection As HttpModulesSection = _ CType(configuration.GetSection( _ "system.web/httpModules"), HttpModulesSection)