Get Outlook 2010 Rule description

c#, outlook, outlook-2010, outlook-addin

Solution

The rule description isn't provided directly in the VSTO API - but you could interpret it yourself by enumerating and translating the Rule Conditions (`Rule.Conditions` / `Rule.Exceptions`), and Rule Actions (`Rule.Actions`).

Problem

I am developing add-in for Outlook 2010. I have to get all rules and descriptions for them. I can access to the rules, but I don't understand how to get descriptions like on the picture.

Original source