다음을 통해 공유


PageHandlerFactory.GetHandler(HttpContext, String, String, String) 메서드

정의

IHttpHandler 인터페이스의 인스턴스를 반환하여 요청된 리소스를 처리합니다.

public:
 virtual System::Web::IHttpHandler ^ GetHandler(System::Web::HttpContext ^ context, System::String ^ requestType, System::String ^ virtualPath, System::String ^ path);
public virtual System.Web.IHttpHandler GetHandler (System.Web.HttpContext context, string requestType, string virtualPath, string path);
abstract member GetHandler : System.Web.HttpContext * string * string * string -> System.Web.IHttpHandler
override this.GetHandler : System.Web.HttpContext * string * string * string -> System.Web.IHttpHandler
Public Overridable Function GetHandler (context As HttpContext, requestType As String, virtualPath As String, path As String) As IHttpHandler

매개 변수

context
HttpContext

내장 서버 개체(예: Request, Response, Session 및 Server)에 대한 참조를 제공하는 HttpContext 클래스의 인스턴스는 HTTP 요청을 지원하는 데 사용됩니다.

requestType
String

클라이언트에서 사용하는 HTTP 데이터 전송 메서드(GET 또는 POST)입니다.

virtualPath
String

요청한 리소스의 가상 경로입니다.

path
String

요청한 리소스에 대한 PhysicalApplicationPath 속성입니다.

반환

IHttpHandler

요청을 처리하는 새 IHttpHandler이거나, 그렇지 않으면 null입니다.

구현

설명

GetHandler메서드는 ASP.NET 실행 시간에 의해 호출 되 고 인터페이스 또는의 유효한 인스턴스를 반환 합니다 IHttpHandler null .

적용 대상

추가 정보