Exchange Appointment Types
Asked Answered
A

1

5

I use the following code to save an appointment via Exchange Web Services Managed API:

Appointment appointment = new Appointment(m_exchangeService);
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = start;
appointment.End = end;
appointment.Save();

When I do this the Appointment is created as a 'meeting' in Outlook. But I just want to have it as normal Appointment not a meeting. How do i do this?

Amateurism answered 6/10, 2010 at 8:47 Comment(0)
A
5

I found an answer. The following code creates a normal nonmeeting Appointment

appointment.Save(WellKnownFolderName.Calendar, SendInvitationsMode.SendToNone);
Amateurism answered 4/4, 2011 at 12:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.