共用方式為


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

此集合包含 null 連接點。

-或-

集合包含不屬於 ProviderConnectionPoint 型別的物件。

-或-

在連接點集合中有重複的 ID。

備註

這個建構函式會建立 類別的新實例 ProviderConnectionPointCollection ,並加入 參數中包含的 connectionPoints 連接點。

您可以使用這個建構函式建立自己的提供者連接點集合物件,方法是建立 ICollection 現有 ProviderConnectionPoint 物件的集合,然後將該集合傳遞至 ProviderConnectionPointCollection(ICollection) 建構函式。 不過,除非您擴充控件,否則您很少需要建立自己的集合,因為 WebPartManager 控件會針對涉及提供者連接點的最常見作業提供必要的方法,包括 GetProviderConnectionPoints 方法。

另請參閱

適用於