I\'ve got the following code:
private void ListCalendarFolders(ref List items, int offset)
{
var pageSize = 100;
va
You need to specify a searchfilter. this is described here, though im not sure which Schema is the correct one, my guess would be Archieved.
So you would do something like this:
SearchFilter searchFilter = new SearchFilter.IsEqualTo(FolderSchema.Archieved, false);
FindFoldersResults findFolderResults = service.FindFolders(WellKnownFolderName.MsgFolderRoot,searchFilter, view);