ProviderConnectionPointCollection 构造函数

定义

初始化 ProviderConnectionPointCollection 类的新实例。

重载

ProviderConnectionPointCollection()

初始化 ProviderConnectionPointCollection 类的空的新实例。

ProviderConnectionPointCollection(ICollection)

使用指定的提供者连接点的集合初始化 ProviderConnectionPointCollection 类的新实例。

注解

可以直接从代码创建 类的新实例 ProviderConnectionPointCollection ,但由于类继承自 类 ReadOnlyCollectionBase ,因此新集合是只读的,创建后无法添加或删除成员。

ProviderConnectionPointCollection()

初始化 ProviderConnectionPointCollection 类的空的新实例。

public:
 ProviderConnectionPointCollection();
public ProviderConnectionPointCollection ();
Public Sub New ()

注解

此构造函数创建 集合中没有项的 ProviderConnectionPointCollection 类的新实例。

另请参阅

适用于

ProviderConnectionPointCollection(ICollection)

使用指定的提供者连接点的集合初始化 ProviderConnectionPointCollection 类的新实例。

public:
 ProviderConnectionPointCollection(System::Collections::ICollection ^ connectionPoints);
public ProviderConnectionPointCollection (System.Collections.ICollection connectionPoints);
new System.Web.UI.WebControls.WebParts.ProviderConnectionPointCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.ProviderConnectionPointCollection
Public Sub New (connectionPoints As ICollection)

参数

connectionPoints
ICollection

用于创建集合的 ICollection 对象的 ProviderConnectionPoint

例外

connectionPointsnull

该集合包含一个空连接点。

- 或 -

该集合包含一个不属于 ProviderConnectionPoint 类型的对象。

- 或 -

连接点集合中有重复的 ID。

注解

此构造函数创建 类的新实例 ProviderConnectionPointCollection ,并添加 参数中包含的 connectionPoints 连接点。

可以使用此构造函数创建自己的提供程序连接点集合对象,方法是创建 ICollection 现有 ProviderConnectionPoint 对象的集合,然后将该集合传递给构造 ProviderConnectionPointCollection(ICollection) 函数。 但是,除非要扩展控件,否则很少需要创建自己的集合,因为控件 WebPartManager 为涉及提供程序连接点的大多数常见操作(包括 GetProviderConnectionPoints 方法)提供必要的方法。

另请参阅

适用于