C# 클래스 NRack.Hosting.AspNet.AspNetHandler

상속: IHttpAsyncHandler
파일 보기 프로젝트 열기: kevinswiber/NRack

공개 메소드들

메소드 설명
BeginProcessRequest ( HttpContext context, AsyncCallback cb, object extraData ) : IAsyncResult

Initiates an asynchronous call to the HTTP handler.

EndProcessRequest ( IAsyncResult result ) : void

Provides an asynchronous process End method when the process ends.

ProcessRequest ( HttpContext context ) : void

메소드 상세

BeginProcessRequest() 공개 메소드

Initiates an asynchronous call to the HTTP handler.
public BeginProcessRequest ( HttpContext context, AsyncCallback cb, object extraData ) : IAsyncResult
context System.Web.HttpContext An object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
cb AsyncCallback The to call when the asynchronous method call is complete. If is null, the delegate is not called.
extraData object Any extra data needed to process the request.
리턴 IAsyncResult

EndProcessRequest() 공개 메소드

Provides an asynchronous process End method when the process ends.
public EndProcessRequest ( IAsyncResult result ) : void
result IAsyncResult An that contains information about the status of the process.
리턴 void

ProcessRequest() 공개 메소드

public ProcessRequest ( HttpContext context ) : void
context System.Web.HttpContext
리턴 void