Skip to main content

CacheReportDocumentEventArgs.SaveExportOptionsToStream(Stream) Method

Saves the current report’s export options to the specified stream.

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v23.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Reporting

Declaration

public void SaveExportOptionsToStream(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object to which the export options should be saved.

Remarks

The SaveExportOptionsToStream method is intended to store export options when implementing caching for a web report.

To accomplish this task, you need to handle the ReportViewer.CacheReportDocument event and save export options to a memory stream via the SaveExportOptionsToStream method. Then, you need to handle the ReportViewer.RestoreReportDocumentFromCache event, and restore export options via the RestoreReportDocumentFromCacheEventArgs.RestoreExportOptionsFromStream method.

See Also