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

ISchedulerStorageBase.CreateOutlookExportSynchronizer() Method

Creates an object which allows you to control how MS Outlook’s Calendar is synchronized with data in the storage.

Namespace: DevExpress.XtraScheduler

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

Declaration

AppointmentExportSynchronizer CreateOutlookExportSynchronizer()

Returns

Type Description
AppointmentExportSynchronizer

An object which allows MS Outlook’s Calendar to be synchronized with the data in storage.

Remarks

The AppointmentSynchronizer object maintains an Outlook appointment identifier via the AppointmentSynchronizer.ForeignIdFieldName mapping. It provides the ability to accomplish synchronization instead of simple export and import operations (for which the AppointmentExporter and AppointmentImporter classes have been constructed).

You can synchronize the data in MS Outlook’s Calendar with the data from the storage using the ISchedulerStorageBase.SynchronizeOutlookWithStorage method. After the data is synchronized, MS Outlook’s Calendar will contain a copy of the scheduler storage data.

Use the CreateOutlookExportSynchronizer method to control how data is synchronized. Call this method to create a AppointmentExportSynchronizer object and subscribe to its events to control individual synchronization operations.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CreateOutlookExportSynchronizer() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also