finditemsresults

Exchange Web Services: Batching with FindItemsResult<Item>

I'm writing an app to process email attachments, using Exchange Web Services. The general structure of my problem area is as follows: public static void Main() { FindItemsResults<Item> findResults = FindItems(); foreach (Item item in findResults) { DoSomethingWithItem(item); } } public static FindItemsResults<...