public void ListingStarted(string mailStore)
 {
     Aborted       = false;
     Complete      = false;
     LastException = null;
     EntryIds.Clear();
 }
 public void Listing(ref Array entryIds, int length, int total, ref bool cancel)
 {
     // uuuugh
     EntryIds.AddRange(entryIds.Cast <string>());
 }