Events in the Outlook PIA

Browsing the Outlook Primary Interop Assembly (PIA), you might notice that many interfaces and event delegates are named after familiar names of objects and events in the Outlook object model. Unlike events in the COM type library, events in the Outlook PIA are not defined in the same interface as methods and properties of the same object. Event-related interfaces, delegates, and sink helper classes are either imported or created to support events in the Outlook PIA. This topic describes these event-related interfaces, delegates, and sink helper classes.

Where do the event interfaces, delegates, and Sink Helper classes come from

To create the Outlook PIA, Outlook uses the Type Library Importer (TLBIMP) in the .NET Framework to convert type definitions in the COM type library into equivalent definitions in a common language runtime (CLR) assembly. TLBIMP imports the following two types of interfaces for each object:

TLBIMP processes the imported interfaces and creates a number of interfaces, delegates, and classes, including the .NET interface (for example, the Application interface). If the object has events, the following are created:

Multiple versions of events

Some objects that have existed for multiple versions of Outlook have different implementations of events over the versions, and have had additional events added as new versions are released. To support events that vary over multiple versions, Outlook distinguishes these event-related interfaces, delegates, and classes by adding a version number to their names. For example:

Logically, events that are added to a later version do not appear in event interfaces of earlier versions and do not have corresponding delegates in earlier versions. For example, the AttachmentSelectionChange event was added to the Explorer object in Outlook 2010, therefore, it is not part of these earlier event interfaces for the Explorer object:

  • ExplorerEvents interface

  • ExplorerEvents_Event interface

On the other hand, you can find the event in the most recent .NET event interface, ExplorerEvents_10_Event, and its delegate for the Outlook 2010 version, ExplorerEvents_10_AttachmentSelectionChangeEventHandler.

What the event interfaces, delegates, and Sink Helper classes are for

Using the Application object as an example, this section describes what each interface and class listed above contains:

  • The primary interface, _Application, defines all the methods and properties of Application. Except for a condition discussed below, typically you do not use this interface in code.

  • The events interfaces imported by TLBIMP, such as ApplicationEvents_11 and ApplicationEvents_10, define methods mapping to events of Application in the corresponding version of Outlook. You do not use this interface in code.

  • The events interfaces created by TLBIMP, such as ApplicationEvents_11_Event and ApplicationEvents_10_Event, define all the events of Application in the corresponding version of Outlook. When designing an event handler for an event in a specific version, you implement the event handler as a method and connect the method to the event defined in the corresponding version of the .NET events interface. Except for a condition discussed below, typically you do not reference the events interface in code.

  • The .NET interface, Application, inherits the _Application interface and the ApplicationEvents_11_Event interface. Typically, this is the one interface you use in managed code to access the object, method, property, and the latest event members of the Application object. There are however two exceptions where you would not use the .NET interface but a different interface to connect to an event:

    • When you access an event that shares the same name as a method of that object, cast to the appropriate event interface to connect to the event. For example, to connect to the Quit event, you cast to the ApplicationEvents_11_Event interface.

    • When you connect to an earlier version of an event that has been subsequently extended in a later version of Outlook, connect to the version of the event in the earlier interface. For example, if you want to connect to the version of the Quit event of the Application object implemented for Outlook 2002 instead of the latest version, connect to the Quit event defined in the ApplicationEvents_10_Event interface, instead of the Quit event defined in the ApplicationEvents_11_Event interface.

  • Delegates provide a framework for you to create custom event handlers for specific events in a specific version of Outlook. For example, if you want to add a check for the existence of a subject line in an Outlook item just before you send it, you implement the check in a callback method that has the same signature as the delegate, ApplicationEvents_11_ItemSendEventHandler. Then you hook up the callback method as an event handler for the ItemSend event that is defined in the ApplicationEvents_11_Event interface. For more information about connecting the callback method as an event handler for an object, see Connecting to custom event handlers.

  • The sink helper classes created by TLBIMP, for example, ApplicationEvents_11_SinkHelper and ApplicationEvents_10_SinkHelper, are event helper objects for Application events in the corresponding version of Outlook. Do not use these classes in code.

See also