HttpModuleAction 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
配置 HttpModulesSection 模块。 此类不能被继承。
public ref class HttpModuleAction sealed : System::Configuration::ConfigurationElement
public sealed class HttpModuleAction : System.Configuration.ConfigurationElement
type HttpModuleAction = class
inherit ConfigurationElement
Public NotInheritable Class HttpModuleAction
Inherits ConfigurationElement
- 继承
示例
此示例演示如何以声明方式为 节的 add
httpModules
元素的多个属性指定值,这些属性也可以作为 类的成员 HttpModuleAction 进行访问。
以下配置文件示例演示如何以声明方式为 httpModules
节指定值。
请参阅 如何:创建和配置 HTTP 模块 ,了解如何生成和配置 HTTP 模块。
<httpModules>
<add name="TimerModule"
type="Samples.Aspnet.Configuration.RequestTimeInterval, RequestTimeInterval Version=1.0.1557.23158, Culture=neutral,
PublicKeyToken=7bfb33146a87b52e, processorArchitecture=MSIL"/>
</httpModules>
下面的代码示例演示如何使用 HttpModuleAction 类。
// Get the Web application configuration.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
HttpModulesSection httpModulesSection =
(HttpModulesSection) configuration.GetSection(
"system.web/httpModules");
' 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)
注解
类 HttpModuleAction 提供了一种以编程方式访问和修改 add
配置文件的 节的 元素 httpModules
的方法。
类型 HttpModuleAction 是包含 HttpModuleActionCollection、 集合和类型的组的 HttpModulesSection 一部分。
构造函数
HttpModuleAction(String, String) |
使用传递的参数初始化 HttpModuleAction 类的新实例。 |