ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Web.Viewer Assembly / GrapeCity.ActiveReports.Aspnetcore.Viewer Namespace / ReportingSettings Class / StoreTemporaryFilesOnDisk Method
A System.String value indicating the base directory for the file store.
Example

In This Topic
    StoreTemporaryFilesOnDisk Method
    In This Topic
    Instructs ActiveReports to store temporary files to a disk to reduce memory consumption.
    Syntax
    'Declaration
     
    Public Sub StoreTemporaryFilesOnDisk( _
       ByVal path As DirectoryInfo _
    ) 
    public void StoreTemporaryFilesOnDisk( 
       DirectoryInfo path
    )

    Parameters

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