MESCIUS.ActiveReports.Web.Viewer Assembly / GrapeCity.ActiveReports.Web.Viewer Namespace / ReportViewerConfiguration Class / UseFileStore Method
A System.String value indicating the base directory for the file store.
Example

In This Topic
UseFileStore Method (ReportViewerConfiguration)
In This Topic
Uses the built-in file store for report files and resources.
Syntax
'Declaration
 
Public Sub UseFileStore( _
   ByVal baseDir As DirectoryInfo _
) 
 

Parameters

baseDir
A System.String value indicating the base directory for the file store.
Example
app.UseReportViewer(config =>
{
   config.UseFileStore(new DirectoryInfo("/path/to/dir"));
});
See Also