I’m developing an email client using EWS, in order to paging emails, I need to add paging function, but how to get the next xx items from a WellKnownFolderName folder say inbox?
I use FindItemsResults findResults = service.FindItems(WellKnownFolderName.Inbox, new ItemView(50)); get first 50 items. how to get the next 50 items? An example code will be highly appreciated!
I’m developing an email client using EWS, in order to paging emails, I need
Share
You are nearly there:
The first parameter is the pagesize, the second parameter is the offset.