WebPartManager.DynamicConnections 属性

定义

获取网页上当前存在的所有动态连接的集合。

protected public:
 property System::Web::UI::WebControls::WebParts::WebPartConnectionCollection ^ DynamicConnections { System::Web::UI::WebControls::WebParts::WebPartConnectionCollection ^ get(); };
protected internal System.Web.UI.WebControls.WebParts.WebPartConnectionCollection DynamicConnections { get; }
member this.DynamicConnections : System.Web.UI.WebControls.WebParts.WebPartConnectionCollection
Protected Friend ReadOnly Property DynamicConnections As WebPartConnectionCollection

属性值

一个 WebPartConnectionCollection,其中包含对页上所有动态连接的引用。

注解

动态连接是以编程方式(而不是静态)创建的连接。 静态连接是通过在 Web 窗体页的标记中声明这些连接来创建的。 动态连接以编程方式形成,或者由用户使用连接用户界面 (UI) 创建连接。

DynamicConnections 集合虽然是只读的,但无法更改其内容,但确实提供对每个动态连接对象的编程访问。

注意

若要执行常见操作(如连接或断开控件), WebPart 开发人员应使用 类上的 WebPartManager 公共方法,例如 DisconnectWebPartsConnectWebParts,而不是尝试直接修改集合中的 DynamicConnections 连接对象。

适用于

另请参阅