xtrareports-devexpress-dot-xtrareports-dot-service-82e39a29.md
When implemented by a class, maintains a WCF service providing export functionality.
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 IExportService
<ServiceContract>
<ServiceKnownType("GetKnownTypes", GetType(ServiceKnownTypeProvider))>
Public Interface IExportService
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