C# 클래스 BlogEngine.Core.Web.HttpHandlers.JavaScriptHandler

Removes whitespace in all stylesheets added to the header of the HTML document in site.master.
This handler uses an external library to perform minification of scripts. See the BlogEngine.Core.JavascriptMinifier class for more details.
상속: IHttpHandler
파일 보기 프로젝트 열기: rasmuskl/ReSharperCourse

공개 메소드들

메소드 설명
ProcessRequest ( HttpContext context ) : void

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

비공개 메소드들

메소드 설명
SetHeaders ( int hash, HttpContext context ) : void

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

메소드 상세

ProcessRequest() 공개 메소드

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. ///
리턴 void