C# Class BlogEngine.Core.Web.HttpHandlers.ResourceHandler

Removes whitespace in all stylesheets added to the header of the HTML document in site.master.
Inheritance: IHttpHandler
Afficher le fichier Open project: rasmuskl/ReSharperCourse

Méthodes publiques

Méthode Description
GetScriptPath ( System cultureInfo ) : string

Returns the script path used to load resources on a page.

ProcessRequest ( HttpContext context ) : void

Enables processing of HTTP Web requests by a custom HttpHandler that implements the interface.

Private Methods

Méthode Description
SetHeaders ( int hash, HttpContext context ) : void

This will make the browser and server keep the output in its cache and thereby improve performance.

Method Details

GetScriptPath() public static méthode

Returns the script path used to load resources on a page.
public static GetScriptPath ( System cultureInfo ) : string
cultureInfo System
Résultat string

ProcessRequest() public méthode

Enables processing of HTTP Web requests by a custom HttpHandler that implements the interface.
public ProcessRequest ( HttpContext context ) : void
context System.Web.HttpContext /// An object that provides /// references to the intrinsic server objects /// (for example, Request, Response, Session, and Server) used to service HTTP requests. ///
Résultat void