ImageResizer  3.4.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events
Classes | Functions
Package ImageResizer.Caching

Classes

interface  ICache
 Provides caching behavior More...
 
interface  ICacheProvider
 Provides cache selection logic More...
 
interface  IResponseArgs
 A collection of data and callbacks that can be passed to a caching object. More...
 
interface  IResponseHeaders
 Allows customization of response headers for a processed image, as well as configuration of the caching system. More...
 
class  ResponseArgs
 IResponseArgs implementation More...
 
class  ResponseHeaders
 

Functions

delegate void ResizeImageDelegate (Stream s)
 A callback method that will resize, encode, and write the data to the given stream. Callback may throw FileNotFoundException when running on top of an optimistic VPP More...
 
delegate Stream GetSourceImageDelegate ()
 
delegate DateTime ModifiedDateDelegate ()
 A callback method to return the last modified date of the source file if available, or DateTime.MinValue if not available. More...
 
delegate void ApplyResponseHeadersDelegate (IResponseHeaders headers, HttpContext context)
 

Function Documentation

delegate DateTime ImageResizer.Caching.ModifiedDateDelegate ( )

A callback method to return the last modified date of the source file if available, or DateTime.MinValue if not available.

Returns

Referenced by ImageResizer.InterceptModule.HandleRequest().

delegate void ImageResizer.Caching.ResizeImageDelegate ( Stream  s)

A callback method that will resize, encode, and write the data to the given stream. Callback may throw FileNotFoundException when running on top of an optimistic VPP

Referenced by ImageResizer.InterceptModule.HandleRequest().