Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

StartupExtensions.UseDevExpressBlazorReporting(IApplicationBuilder) Method

Registers the DevExpress Blazor Reporting middleware.

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v24.2.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