C# Class Sage.ResourceManagement.ResourceHandler

Implements an IHttpHandler for handling XML requests.
Inheritance: IHttpHandler
ファイルを表示 Open project: igorfrance/sage

Public Methods

Method Description
ProcessRequest ( HttpContext context ) : void

Enables processing of HTTP Web requests by a custom HttpHandler that implements the T:System.Web.IHttpHandler interface.

ProcessRequest ( System.Web.HttpContextBase context, string>.Func mapPath ) : void

Processes the request.

Private Methods

Method Description
SendContent ( System.Web.HttpContextBase context, CacheableXmlDocument document ) : void
SendContent ( System.Web.HttpContextBase context, string filename ) : void

Method Details

ProcessRequest() public method

Enables processing of HTTP Web requests by a custom HttpHandler that implements the T:System.Web.IHttpHandler interface.
public ProcessRequest ( HttpContext context ) : void
context System.Web.HttpContext An object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
return void

ProcessRequest() public method

Processes the request.
public ProcessRequest ( System.Web.HttpContextBase context, string>.Func mapPath ) : void
context System.Web.HttpContextBase The context.
mapPath string>.Func The map path.
return void