StartupExtensions.UseDevExpressBlazorReporting(IApplicationBuilder) Method
In This Article
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 |
---|---|---|
application |
IApplication |
An object that provides the mechanisms to configure an application’s request pipeline. |
#Returns
Type | Description |
---|---|
IApplication |
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