Exchange Noob here,
I need to move a contact information record to another folder from a c# application.
I have no clue how to do that – anybody got pointers? Should I do remove and then re-add? That would be clunky.
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since you tagged you question with “exchangewebservices” I assume you are working with Exchange 2007 or 2010. You can use the Exchange WebServices or Exchange Managed API. With the Exchange Managed API you can use the Item.Move method to move the item to a different folder. If you want to use EWS directly, use the MoveItem operation (http://msdn.microsoft.com/en-us/library/aa564512(v=exchg.140).aspx).