xtrareports-devexpress-dot-xtrareports-dot-service-57789876.md
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.v25.2.Service.dll
NuGet Packages : DevExpress.Reporting.WCF, DevExpress.Win.Dashboard
[ServiceContract]
[ServiceKnownType("GetKnownTypes", typeof(ServiceKnownTypeProvider))]
public interface IReportService :
IExportService
<ServiceContract>
<ServiceKnownType("GetKnownTypes", GetType(ServiceKnownTypeProvider))>
Public Interface IReportService
Inherits IExportService
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