Provides a simple way for describing and enumerating the events fired on a particular connection point. This interface also makes it easy to hook up an IDispatch object to those events. This interface is implemented by the Process Debug Manager (PDM), and consumed by script engines.

This interface is available from IDebugHelper::CreateSimpleConnectionPoint.

In addition to the methods inherited from IUnknown, the ISimpleConnectionPoint interface exposes the following methods.

Methods in Vtable Order

Method Description

ISimpleConnectionPoint::Advise

Establishes a connection between the simple connection point object and the client's sink.

ISimpleConnectionPoint::DescribeEvents

Returns the DISPID and name for each event in a specified range of events.

ISimpleConnectionPoint::GetEventCount

Returns the number of events exposed on this interface.

ISimpleConnectionPoint::Unadvise

Terminates an advisory connection previously established through ISimpleConnectionPoint::Advise.

See Also