IHttpAsyncHandler 인터페이스

정의

HTTP 비동기 처리기 개체에서 구현해야 하는 계약을 정의합니다.

public interface class IHttpAsyncHandler : System::Web::IHttpHandler
public interface IHttpAsyncHandler : System.Web.IHttpHandler
type IHttpAsyncHandler = interface
    interface IHttpHandler
Public Interface IHttpAsyncHandler
Implements IHttpHandler
파생
구현

설명

클래스는 IHttpAsyncHandler 구성 섹션의 구성 httpHandlers 파일에서 파일 이름 확장명 또는 특정 URL과 연결할 수 있습니다. 그런 다음, ASP.NET 인프라는 해당 요청을 받으면 처리기를 인스턴스화하고 호출합니다. 또는 처리기를 .ashx 파일에서 정의할 수 있으며 .ashx 파일에 대한 해당 요청을 받으면 처리기가 실행됩니다.

속성

IsReusable

다른 요청에서 IHttpHandler 인스턴스를 사용할 수 있는지 여부를 나타내는 값을 가져옵니다.

(다음에서 상속됨 IHttpHandler)

메서드

BeginProcessRequest(HttpContext, AsyncCallback, Object)

HTTP 처리기에 대한 비동기 호출을 시작합니다.

EndProcessRequest(IAsyncResult)

처리가 끝날 때 비동기 프로세스 End 메서드를 제공합니다.

ProcessRequest(HttpContext)

IHttpHandler 인터페이스를 구현하는 사용자 지정 HttpHandler를 사용하여 HTTP 웹 요청을 처리할 수 있도록 합니다.

(다음에서 상속됨 IHttpHandler)

적용 대상