In Outlook, I can open an appointment and follow File -> Properties in the ribbon to view the properties. In the properties window, there is the 'Contacts...' button and textbox where you can apply contacts to the appointment or enter text in the box.

I want to programmaticly read this property via the Exchange Managed API but can't find anything to support this.

Looking through the Appointment documentation, I see members for just about all of the properties but don't see a way to retrieve the "Contacts".

Please advise.

link|improve this question

feedback

1 Answer

look or do a google search on something like the following not even sure this would work.. for contacts it would just replace Appoinment with Contact

Appointment apt = AppointMent.Bind(service, new ItemId(id), new PropertySet(BasePropertySet.FirstClassProperties, AppointmentSchema.Body ));
link|improve this answer
Of source I've checked Google, I found plenty of examples like what you have. However, what I can't figure out is how to the the "Contacts". – Babak Naffas Dec 16 '11 at 21:26
Contacts cnt = Contacts.Bind(service, new ItemId(id) bla..bla..bla does that even work for you if you replace the code..? I will look real quick are you wanting to access the contacts/Appointments..? if you look at this page and scroll down a bit you can see an example of how to access it via a web application just make modifications to fit your use case weblogs.asp.net/whaggard/archive/2007/01/30/… – DJ KRAZE Dec 16 '11 at 21:27
I'll test that over the weekend. Thanks. – Babak Naffas Dec 16 '11 at 21:39
not a problem.. just tring to be a team player here have a good weekend.. – DJ KRAZE Dec 16 '11 at 21:39
Didn't work. The Id you bind to must match types with the object type. – Babak Naffas Jan 11 at 21:59
feedback

Your Answer

 
or
required, but never shown

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