GetFromFileSystem() public static method

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