GetFromFileSystem() 공개 정적인 메소드

public static GetFromFileSystem ( string templatePath ) : string
templatePath string
리턴 string
예제 #1
0
 public IReportBuilder <T> WithCssFromFileSystem(string cssPath)
 {
     return(WithCss(ContentFinder.GetFromFileSystem(cssPath)));
 }
예제 #2
0
 public IReportBuilder <T> WithHelpersFromFileSystem(string helperFilePath)
 {
     return(WithHelpers(ContentFinder.GetFromFileSystem(helperFilePath)));
 }
예제 #3
0
 public IReportBuilder <T> WithTemplateFromFileSystem(string templatePath)
 {
     return(WithTemplate(ContentFinder.GetFromFileSystem(templatePath)));
 }