The IPropertyNotifySink interface allows a sink object to receive notifications about property changes. The IPropertyNotifySinkCP class exposes this interface as an outgoing interface on a connectable object. The client must implement the IPropertyNotifySink methods on the sink.
Derive your class from IPropertyNotifySinkCP when you want to create a connection point that represents the IPropertyNotifySink interface.
IPropertyNotifySink is derived from IConnectionPointImpl. IConnectionPointImpl implements a connection point, which allows an object to expose an outgoing interface to the client.
At a Glance
Header file: | Atlctl.h |
Windows CE versions: | 2.0 and later |
Complete documentation: | Visual C++ documentation |
Syntax
template< class T, class CDV = CComDynamicUnkArray >
class IPropertyNotifySinkCP :
public IConnectionPointImpl< T, &IID_IPropertyNotifySink, CDV >
See Also