Skip to main content

StartupExtensions.UseDevExpressBlazorReporting(IApplicationBuilder) Method

Registers the DevExpress Blazor Reporting middleware.

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v24.1.JSBasedControls.dll

NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls

Declaration

public static IApplicationBuilder UseDevExpressBlazorReporting(
    this IApplicationBuilder applicationBuilder
)

Parameters

Name Type Description
applicationBuilder IApplicationBuilder

An object that provides the mechanisms to configure an application’s request pipeline.

Returns

Type Description
IApplicationBuilder

An object that provides the mechanisms to configure an application’s request pipeline for subsequent use.

Remarks

Call the UseDevExpressBlazorReporting method to register the DevExpress Blazor Reporting middleware. Call the UseDevExpressBlazorReporting method in the application startup file:

using DevExpress.AspNetCore;
using DevExpress.Blazor.Reporting;

var app = builder.Build();

app.UseDevExpressBlazorReporting();

app.Run();
See Also