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 클래스의 새 인스턴스를 초기화합니다. |
속성
메서드
적용 대상
추가 정보
.NET