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.AddDevExpressBlazorReporting(IServiceCollection) Method

Adds the DevExpress Blazor Reporting services to the IServiceCollection collection.

Namespace: DevExpress.Blazor.Reporting

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

NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls

#Declaration

public static IServiceCollection AddDevExpressBlazorReporting(
    this IServiceCollection services
)

#Parameters

Name Type Description
services IServiceCollection

A list of service descriptor objects that define services in an application.

#Returns

Type Description
IServiceCollection

An updated list of service descriptor objects for subsequent use.

#Remarks

The AddDevExpressBlazorReporting method is used to configure DevExpress Blazor Reporting services in a Blazor application. Call the AddDevExpressBlazorReporting method at the application startup:

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

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddDevExpressBlazorReporting();

var app = builder.Build();
See Also