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、構成ファイルの セクションの httpModules
要素にプログラムでアクセスして変更add
する方法を提供します。
型は HttpModuleAction 、、コレクション、および 型を HttpModuleActionCollection含むグループの HttpModulesSection 一部です。
コンストラクター
HttpModuleAction(String, String) |
渡されたパラメーターを使用して、HttpModuleAction クラスの新しいインスタンスを初期化します。 |
プロパティ
メソッド
適用対象
こちらもご覧ください
.NET