C# Class ImageMagick.Web.MagickModule

Httpmodule that uses various handlers to resize/optimize/compress images.
Inheritance: IHttpModule
Datei anzeigen Open project: dlemstra/Magick.NET

Private Properties

Property Type Description
CreateHttpHandler IHttpHandler
HandleRequest IHttpHandler
InitOpenCL void
InitResourceLimits void
OnBeginRequest void
OnPostAuthorizeRequest void
OnPostMapRequestHandler void

Public Methods

Method Description
Dispose ( ) : void

Disposes of the resources (other than memory) used by the module.

Init ( System.Web.HttpApplication context ) : void

Initializes the module and prepares it to handle requests.

Private Methods

Method Description
CreateHttpHandler ( IUrlResolver urlResolver ) : IHttpHandler
HandleRequest ( HttpContext context ) : IHttpHandler
InitOpenCL ( ) : void
InitResourceLimits ( ) : void
OnBeginRequest ( object sender, EventArgs arguments ) : void
OnPostAuthorizeRequest ( object sender, EventArgs arguments ) : void
OnPostMapRequestHandler ( object sender, EventArgs arguments ) : void

Method Details

Dispose() public method

Disposes of the resources (other than memory) used by the module.
public Dispose ( ) : void
return void

Init() public method

Initializes the module and prepares it to handle requests.
public Init ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication An HttpApplication that provides access to the methods, properties, /// and events common to all application objects within an ASP.NET application
return void