Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
3/29/2010

Initializes a new instance of the Appointment class.

Namespace:Microsoft.WindowsMobile.PocketOutlook
Assembly:Microsoft.WindowsMobile.PocketOutlook (in microsoft.windowsmobile.pocketoutlook.dll)

Syntax

Remarks

A new Appointment is created in a specified Folder. You must later add the Appointment to a collection using AppointmentCollection.Add().


Example

OutlookSession s; using (s = new OutlookSession()) { Appointment a = new Appointment(); // Set properties on "a" here. s.Appointments.Items.Add(a); a.Update(); }

See Also