This is an automatically generated wrapper around the Outlook COM library's Exception
class, which represents an exception to a recurring appointment.
The types in the Office PIAs are thin wrappers around the corresponding native COM libraries and do not follow standard .Net conventions; this is why Office automation is so annoying in C# < 4.0.
For example, collection classes are pluralized (eg, Columns
instead of ColumnCollection
), many properties are parameterized (which are not supported by C# < 4), most method parameters are ref object
s, and many events share the same name as a method (eg, Document.Close
in Word).
The VSTO Power Tools make Office automation in C# much easier.