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

IReportService Interface

In This Article

If implemented by a class, maintains WCF service and provides the printing and exporting functionality for a report service.

Namespace: DevExpress.XtraReports.Service

Assembly: DevExpress.XtraReports.v24.2.Service.dll

NuGet Packages: DevExpress.Reporting.WCF, DevExpress.Win.Dashboard

#Declaration

[ServiceContract]
[ServiceKnownType("GetKnownTypes", typeof(ServiceKnownTypeProvider))]
public interface IReportService :
    IExportService

#Remarks

If implemented by a class, the methods exposed by the IReportService interface allow you to start building a report document (IReportService.StartBuild), export a document (IExportService.StartExport) or print it (IReportService.StartPrint), and maintain the current status of the document on the server side.

The base class that implements this interface is ReportService.

See Also