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?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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

appointment.Save(WellKnownFolderName.Calendar, SendInvitationsMode.SendToNone);
link|improve this answer
feedback

I looked through an EWS integration I am working on and I can't find a simple answer. The closest thing I could find was the IsMeeting property, but it is read only. The article also implies that meetings are appointments if they don't have any attendees.

http://msdn.microsoft.com/en-us/library/aa565809(EXCHG.80).aspx

That may put you on the right path.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.