System.Win.ComObj.TConnectionPoint.SinkList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SinkList : TList read FSinkList;

C++

__property System::Classes::TList* SinkList = {read=FSinkList};

Properties

Type Visibility Source Unit Parent
property public
System.Win.ComObj.pas
System.Win.ComObj.hpp
System.Win.ComObj TConnectionPoint

Description

Lists the sinks for the outgoing interfaces maintained by the connection point.

SinkList lists the sinks managed by the connection point. These are the interfaces that clients implement for responding to server events. When a client registers an interest in the connection point, it supplies an interface pointer that is added to this list.

Each item in the list can be cast to an IUnknown and used to access the outgoing interface.

See Also