C# Class ImageProcessor.Web.Helpers.ValidatingRequestEventArgs

The validating request event args
This can be used by event subscribers to cancel image processing based on the information contained in the request, or can be used to directly manipulate the querystring parameter that will be used to process the image.
Inheritance: System.ComponentModel.CancelEventArgs
Mostra file Open project: JimBobSquarePants/ImageProcessor Class Usage Examples

Public Methods

Method Description
ValidatingRequestEventArgs ( System.Web.HttpContextBase context, string queryString ) : System.ComponentModel

Initializes a new instance of the ValidatingRequestEventArgs class.

Method Details

ValidatingRequestEventArgs() public method

Initializes a new instance of the ValidatingRequestEventArgs class.
public ValidatingRequestEventArgs ( System.Web.HttpContextBase context, string queryString ) : System.ComponentModel
context System.Web.HttpContextBase The current http context.
queryString string The query string.
return System.ComponentModel