Skip to main content
All docs
V23.2
.NET 6.0+

ReportOptions.ReportStoreMode Property

Specifies the format used to store reports in the ReportsStorage.

Namespace: DevExpress.ExpressApp.ReportsV2

Assembly: DevExpress.ExpressApp.ReportsV2.v23.2.dll

Declaration

public ReportStoreModes ReportStoreMode { get; set; }

Property Value

Type Description
ReportStoreModes

A ReportStoreModes enumeration value that specifies the format used to store reports.

Remarks

The following example demonstrates how to specify this property:

File: MySolution.Blazor.Server\Startup.cs.

using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Blazor.ApplicationBuilder;
using DevExpress.Persistent.BaseImpl;
// ...
public class Startup {
   // ...
    public void ConfigureServices(IServiceCollection services) {
        // ...
        services.AddXaf(Configuration, builder => {
            builder.UseApplication<MySolutionBlazorApplication>();
            builder.Modules
                // ...
                .AddReports(options => {
                    options.ReportStoreMode = DevExpress.ExpressApp.ReportsV2.ReportStoreModes.XML;
                })
            // ...
        });
        // ...
    }
}
See Also