GetFromFileSystem() public static method

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