ProviderConnectionPointCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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。
例外
connectionPoints
为 null
。
注解
此构造函数创建 类的新实例 ProviderConnectionPointCollection ,并添加 参数中包含的 connectionPoints
连接点。
可以使用此构造函数创建自己的提供程序连接点集合对象,方法是创建 ICollection 现有 ProviderConnectionPoint 对象的集合,然后将该集合传递给构造 ProviderConnectionPointCollection(ICollection) 函数。 但是,除非要扩展控件,否则很少需要创建自己的集合,因为控件 WebPartManager 为涉及提供程序连接点的大多数常见操作(包括 GetProviderConnectionPoints 方法)提供必要的方法。