C# Class GrabzIt.Handler

Inheritance: IHttpHandler
Show file Open project: grabzit/grabzit

Public Methods

Method Description
ProcessRequest ( HttpContext context ) : void

Process the parameters returned to the callback handler

Protected Methods

Method Description
Process ( HttpContext context, string filename, string id, string message, string customId, string format ) : void

This method allows this handler to be overriden and the result processed in a different way

Method Details

Process() protected method

This method allows this handler to be overriden and the result processed in a different way
protected Process ( HttpContext context, string filename, string id, string message, string customId, string format ) : void
context System.Web.HttpContext The current context of the request
filename string The filename of the screenshot
id string The unique identifier of the screenshot
message string Any message due to the processing
customId string Any custom id that was passed to the GrabzIt web service.
format string The format of the returned screenshot (e.g. PDF, JPG).
return void

ProcessRequest() public method

Process the parameters returned to the callback handler
public ProcessRequest ( HttpContext context ) : void
context System.Web.HttpContext The request context
return void