TagPrefixCollection.Add(TagPrefixInfo) 方法

定义

TagPrefixInfo 对象添加到集合中。

public:
 void Add(System::Web::Configuration::TagPrefixInfo ^ tagPrefixInformation);
public void Add (System.Web.Configuration.TagPrefixInfo tagPrefixInformation);
member this.Add : System.Web.Configuration.TagPrefixInfo -> unit
Public Sub Add (tagPrefixInformation As TagPrefixInfo)

参数

tagPrefixInformation
TagPrefixInfo

要添加到集合的 TagPrefixInfo 对象。

例外

此集合中已存在要添加的 TagPrefixInfo 对象。

- 或 -

该集合是只读的。

示例

下面的代码示例说明如何使用 Add 方法。 此代码示例是为 PagesSection 类提供的一个更大示例的一部分。

// Add a TagPrefixInfo object using a constructor.
pagesSection.Controls.Add(
    new System.Web.Configuration.TagPrefixInfo(
    "MyCtrl", "MyNameSpace", "MyAssembly", "MyControl",
    "MyControl.ascx"));
' Add a TagPrefixInfo object using a constructor.
pagesSection.Controls.Add( _
 New System.Web.Configuration.TagPrefixInfo( _
 "MyCtrl", "MyNameSpace", "MyAssembly", "MyControl", _
 "MyControl.ascx"))

注解

集合不得已包含 TagPrefixInfo 具有相同属性值的 对象。 如果存在, ConfigurationException 将引发 。

适用于

另请参阅