HttpHandlerAction 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HttpHandlerAction 클래스의 새 인스턴스를 초기화합니다.
오버로드
HttpHandlerAction(String, String, String) |
전달된 매개 변수를 사용하여 HttpHandlerAction 클래스의 새 인스턴스를 초기화합니다. |
HttpHandlerAction(String, String, String, Boolean) |
전달된 매개 변수를 사용하여 HttpHandlerAction 클래스의 새 인스턴스를 초기화합니다. |
HttpHandlerAction(String, String, String)
전달된 매개 변수를 사용하여 HttpHandlerAction 클래스의 새 인스턴스를 초기화합니다.
public:
HttpHandlerAction(System::String ^ path, System::String ^ type, System::String ^ verb);
public HttpHandlerAction (string path, string type, string verb);
new System.Web.Configuration.HttpHandlerAction : string * string * string -> System.Web.Configuration.HttpHandlerAction
Public Sub New (path As String, type As String, verb As String)
매개 변수
- path
- String
HttpHandlerAction URL 경로입니다.
- type
- String
버전, culture 및 공개 키 토큰으로 구성되며 쉼표로 구분된 클래스/어셈블리 조합입니다.
- verb
- String
HTTP 동사의 쉼표로 구분된 목록(예: "GET, PUT, POST")입니다.
설명
HttpHandlerAction 생성자는 코드에서 직접 사용할 수 없습니다. ASP.NET 구성 시스템에서 호출 됩니다. 인스턴스를 가져올 수는 HttpHandlerAction 를 사용 하 여 클래스를 Handlers 속성입니다.
적용 대상
HttpHandlerAction(String, String, String, Boolean)
전달된 매개 변수를 사용하여 HttpHandlerAction 클래스의 새 인스턴스를 초기화합니다.
public:
HttpHandlerAction(System::String ^ path, System::String ^ type, System::String ^ verb, bool validate);
public HttpHandlerAction (string path, string type, string verb, bool validate);
new System.Web.Configuration.HttpHandlerAction : string * string * string * bool -> System.Web.Configuration.HttpHandlerAction
Public Sub New (path As String, type As String, verb As String, validate As Boolean)
매개 변수
- path
- String
HttpHandlerAction URL 경로입니다.
- type
- String
버전, culture 및 공개 키 토큰으로 구성되며 쉼표로 구분된 클래스/어셈블리 조합입니다.
- verb
- String
HTTP 동사의 쉼표로 구분된 목록(예: "GET, PUT, POST")입니다.
- validate
- Boolean
유효성 검사를 허용하려면 true
이고, 그렇지 않으면 false
입니다. false
일 경우, ASP.NET은 실제 일치하는 요청이 올 때까지 클래스를 로드하지 않으므로 오류가 지연될 수 있지만 시작 시간이 빨라집니다.
예제
다음 코드 예제에는 만드는 방법을 보여 줍니다는 HttpHandlerAction 개체입니다.
// Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction(
"Calculator.custom",
"Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler",
"GET",
true));
' Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction( _
"Calculator.custom", _
"Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler", _
"GET", _
true))
설명
HttpHandlerAction 생성자는 코드에서 직접 사용할 수 없습니다. ASP.NET 구성 시스템에서 호출 됩니다. 인스턴스를 가져올 수는 HttpHandlerAction 를 사용 하 여 클래스를 Handlers 속성입니다.