IConnectionPointContainerImpl 类
此类实现了连接点容器来管理 IConnectionPointImpl 对象的集合。
语法
template<class T>
class ATL_NO_VTABLE IConnectionPointContainerImpl
: public IConnectionPointContainer
参数
T
你的类,派生自 IConnectionPointContainerImpl
。
成员
公共方法
名称 | 描述 |
---|---|
IConnectionPointContainerImpl::EnumConnectionPoints | 创建枚举器以循环访问可连接对象支持的连接点。 |
IConnectionPointContainerImpl::FindConnectionPoint | 检索指向支持指定 IID 的连接点的接口指针。 |
备注
IConnectionPointContainerImpl
实现了连接点容器来管理 IConnectionPointImpl 对象的集合。 IConnectionPointContainerImpl
提供客户端可以调用的两种方法来检索有关可连接对象的详细信息:
EnumConnectionPoints
允许客户端确定对象支持的传出接口。FindConnectionPoint
允许客户端确定对象是否支持特定的传出接口。
有关 ATL 中的连接点的详细信息,请参阅连接点一文。
继承层次结构
IConnectionPointContainer
IConnectionPointContainerImpl
要求
标头:atlcom.h
IConnectionPointContainerImpl::EnumConnectionPoints
创建枚举器以循环访问可连接对象支持的连接点。
STDMETHOD(EnumConnectionPoints)(IEnumConnectionPoints** ppEnum);
备注
请参阅 Windows SDK 中的 IConnectionPointContainer::EnumConnectionPoints。
IConnectionPointContainerImpl::FindConnectionPoint
检索指向支持指定 IID 的连接点的接口指针。
STDMETHOD(FindConnectionPoint)(REFIID riid, IConnectionPoint** ppCP);
注解
请参阅 Windows SDK 中的 IConnectionPointContainer::FindConnectionPoint。