C# 클래스 DotSmart.LessCssHandler

상속: ScriptHandlerBase
파일 보기 프로젝트 열기: duncansmart/LessCoffee

공개 메소드들

메소드 설명
GetDependencies ( string lessFilePath ) : string[]

Returns an array of file names representing all of the dependencies of the specified *.less file (not including itself).

GetLastModified ( string lessFilePath ) : System.DateTime

Gets the most recent modified date of the specified *.less file and all of its dependecies

RenderCss ( string lessFilePath, TextWriter output, bool compress = true, string lessPrologue = null, string lessPostscript = null, string lineNumbers = null ) : void

보호된 메소드들

메소드 설명
GetFileDependencies ( string physicalFileName ) : IEnumerable
Render ( string physicalFileName, TextWriter output ) : void

비공개 메소드들

메소드 설명
LessCssHandler ( ) : System

Initializes a new instance of the LessCssHandler class.

renderStylesheet ( string lessFilePath, TextWriter output ) : bool

메소드 상세

GetDependencies() 공개 정적인 메소드

Returns an array of file names representing all of the dependencies of the specified *.less file (not including itself).
public static GetDependencies ( string lessFilePath ) : string[]
lessFilePath string
리턴 string[]

GetFileDependencies() 보호된 메소드

protected GetFileDependencies ( string physicalFileName ) : IEnumerable
physicalFileName string
리턴 IEnumerable

GetLastModified() 공개 정적인 메소드

Gets the most recent modified date of the specified *.less file and all of its dependecies
public static GetLastModified ( string lessFilePath ) : System.DateTime
lessFilePath string
리턴 System.DateTime

Render() 보호된 메소드

protected Render ( string physicalFileName, TextWriter output ) : void
physicalFileName string
output System.IO.TextWriter
리턴 void

RenderCss() 공개 정적인 메소드

public static RenderCss ( string lessFilePath, TextWriter output, bool compress = true, string lessPrologue = null, string lessPostscript = null, string lineNumbers = null ) : void
lessFilePath string
output System.IO.TextWriter
compress bool
lessPrologue string
lessPostscript string
lineNumbers string
리턴 void