WebPartDescriptionCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 WebPartDescriptionCollection 类的新实例。
重载
WebPartDescriptionCollection() |
初始化 WebPartDescriptionCollection 类的空的新实例。 |
WebPartDescriptionCollection(ICollection) |
通过传入 WebPartDescriptionCollection 对象的 ICollection 集合初始化 WebPartDescription 对象的新实例。 |
WebPartDescriptionCollection()
初始化 WebPartDescriptionCollection 类的空的新实例。
public:
WebPartDescriptionCollection();
public WebPartDescriptionCollection ();
Public Sub New ()
注解
构造函数的 WebPartDescriptionCollection 此重载可用于创建空集合。 例如,如果导入的描述文件的内容为 null
,则ImportCatalogPart控件将创建一个空WebPartDescriptionCollection对象。
适用于
WebPartDescriptionCollection(ICollection)
通过传入 WebPartDescriptionCollection 对象的 ICollection 集合初始化 WebPartDescription 对象的新实例。
public:
WebPartDescriptionCollection(System::Collections::ICollection ^ webPartDescriptions);
public WebPartDescriptionCollection (System.Collections.ICollection webPartDescriptions);
new System.Web.UI.WebControls.WebParts.WebPartDescriptionCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.WebPartDescriptionCollection
Public Sub New (webPartDescriptions As ICollection)
参数
- webPartDescriptions
- ICollection
目录中对应于 WebPartDescription 控件的 WebPart 对象的集合。
例外
webPartDescriptions
为 null
。
webPartDescriptions
的一个成员为 null
- 或 -
webPartDescriptions
的一个成员不是 WebPartDescription 类型的对象
- 或 -
的成员 webPartDescriptions
具有重复 ID 属性。
注解
构造 WebPartDescriptionCollection(ICollection) 函数由 GetAvailableWebPartDescriptions 各种 CatalogPart 控件内的方法实现用于创建对象的集合 WebPartDescription 。