I can't come across the full list anywhere, it makes life creating tools for outlook particularly painfull.
I am creating series of tools in WPF integrating with Microsoft.Office.Interop.Outlook
I am able to apply filters using .find and .restrict just fine like an example below:
restrictedItems = inboxFolder.Items
.Restrict("[ReceivedTime] > '" + dateFilter1.ToString("MM/dd/yyyy HH:mm")
+ "' And [ReceivedTime] < '" + dateFilter2.ToString("MM/dd/yyyy HH:mm") + "' ");
however I just don't know all the possible fields I can use to filter. Microsoft does a terrible job documenting it.
Here are some examples: [ReceivedTime] [MessageClass] [LastModificationTime]
But I would like to have it all
any directions?