GetFromFileSystem() public static method

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