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

AppointmentImportSynchronizer Class

Serves as a base class that implements appointment synchronization for import scenarios.

Namespace: DevExpress.XtraScheduler.Exchange

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

Declaration

public abstract class AppointmentImportSynchronizer :
    AppointmentSynchronizer

The following members accept/return AppointmentImportSynchronizer objects:

Library Related API Members
Cross-Platform Class Library ISchedulerStorageBase.CreateOutlookImportSynchronizer()
SchedulerStorageBase.CreateOutlookImportSynchronizer()
WinForms Controls SchedulerDataStorage.CreateOutlookImportSynchronizer()
ASP.NET Web Forms Controls MVCxSchedulerStorage.CreateOutlookImportSynchronizer()

Remarks

Use the SchedulerStorageBase.CreateOutlookImportSynchronizer object to create an object of the AppointmentImportSynchronizer type.

The following code snippet illustrates the use of the AppointmentImportSynchronizer class.

AppointmentImportSynchronizer synchronizer = schedulerControl1.Storage.CreateOutlookImportSynchronizer();
// Specify the field that contains appointment identifier used by a third-party application.
synchronizer.ForeignIdFieldName = OutlookEntryIDFieldName;
// The AppointmentSynchronizing event allows you to control the operation for an individual appointment.
synchronizer.AppointmentSynchronizing += new AppointmentSynchronizingEventHandler(importSynchronizer_AppointmentSynchronizing);
// The AppointmentSynchronized event indicates that the operation for a particular appointment is complete.
synchronizer.AppointmentSynchronized += new AppointmentSynchronizedEventHandler(importSynchronizer_AppointmentSynchronized);
// Specify MS Outlook calendar path.
((ISupportCalendarFolders)synchronizer).CalendarFolderName = comboBoxEdit1.EditValue.ToString();
// Perform the operation.
synchronizer.Synchronize();

The following code snippets (auto-collected from DevExpress Examples) contain references to the AppointmentImportSynchronizer class.

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