Skip to main content
A newer version of this page is available. .

IReportService Interface

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.v18.2.Service.dll

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.

For more information about Windows Communication Foundation, refer to MSDN.

See Also