MindFusion.Wpf Pack Programmer's Guide
OutlookImporter Class
Remarks See Also
 





Provides methods for importing items, contacts and tasks from Microsoft® Outlook®.

Namespace: MindFusion.Scheduling.Outlook
Assembly: MindFusion.Scheduling.Wpf.Outlook

 Syntax

C#  Copy Code

public class OutlookImporter

Visual Basic  Copy Code

Public Class OutlookImporter

 Remarks

In order to import items to Scheduling for WPF from Microsoft® Outlook®, you create an instance of this class, optionally attach event handlers in order to perform conditional importing, and invoke one of the import methods, depending on the type of objects you need to import - ImportItems, ImportContacts and ImportTasks.

 Example

The following example demonstrates how to use OutlookImporter:

C#  Copy Code
OutlookImporter importer = new OutlookImporter(calendar.Schedule);
importer.ImportItems();
Visual Basic  Copy Code
Dim importer As New OutlookImporter(calendar.Schedule)
importer.ImportItems()

 Inheritance Hierarchy

System.Object
    MindFusion.Scheduling.Outlook.OutlookImporter

 See Also

OutlookImporter Members
MindFusion.Scheduling.Outlook Namespace