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

IExportService Interface

In This Article

When implemented by a class, maintains a WCF service providing export functionality.

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 IExportService

#Remarks

The methods exposed by the IExportService interface allow you to start exporting a report document (IExportService.StartExport), and maintain its current status on the server side (IExportService.GetExportedDocument, IExportService.GetExportStatus and IExportService.ClearDocument).

For more information about exporting, refer to the corresponding topic in the XtraReports documentation: Exporting Reports.

See Also