C# Class GrabzIt.Handler

Inheritance: IHttpHandler
Afficher le fichier Open project: grabzit/grabzit

Méthodes publiques

Méthode Description
ProcessRequest ( HttpContext context ) : void

Process the parameters returned to the callback handler

Méthodes protégées

Méthode 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 méthode

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).
Résultat void

ProcessRequest() public méthode

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