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

AppointmentExporter Class

Represents the appointments exporter which exports the appointments data from the Scheduler to another scheduler application (for instance, MS Outlook).

Namespace: DevExpress.XtraScheduler.Exchange

Assembly: DevExpress.XtraScheduler.v18.2.Core.dll

Declaration

public abstract class AppointmentExporter :
    AppointmentExchanger

The following members return AppointmentExporter objects:

Library Related API Members
Cross-Platform Class Library ISchedulerStorageBase.CreateOutlookExporter()
SchedulerStorageBase.CreateOutlookExporter()
WinForms Controls SchedulerDataStorage.CreateOutlookExporter()
ASP.NET Controls and MVC Extensions MVCxSchedulerStorage.CreateOutlookExporter()

Remarks

This class provides the functionality used when manually exporting the XtraScheduler’s data to another scheduling application (for instance, MS Outlook). The storage of the scheduler application to export the data to is accessed via the AppointmentExchanger.Storage property. To export the appointments data the AppointmentExporter.Export method should be used.

For data synchronization, use classes, different for export and import, which are derived from the AppointmentSynchronizer class. Synchronization provides greater flexibility for data exchange, since it takes advantage of the OutlookID for the appointment (represented by the AppointmentSynchronizer.ForeignIdFieldName mapping).

You can intercept exceptions that occur during export/import by handling the AppointmentExchanger.OnException event and terminate the process if required by calling the AppointmentExchanger.Terminate method.

For more information, review the Synchronization with Microsoft Outlook article.

See Also