Error when I try to read/update the .Body of a Task via EWS Managed API – “You must load or assign this property before you can read its value.”
Calling the Load method solved my problem 🙂 foreach (Item item in findResults.Items) { item.Load(); string subject = item.Subject; string mailMessage = item.Body; }