TagPrefixCollection.Add(TagPrefixInfo) Method

Definition

Adds a TagPrefixInfo object to the collection.

public void Add (System.Web.Configuration.TagPrefixInfo tagPrefixInformation);

Parameters

tagPrefixInformation
TagPrefixInfo

The TagPrefixInfo object to add to the collection.

Exceptions

The TagPrefixInfo object to add already exists in the collection.

-or-

The collection is read-only.

Examples

The following code example shows how to use the Add method. This code example is part of a larger example provided for the PagesSection class.

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

Remarks

The collection must not already contain a TagPrefixInfo object with the same property values. If it does, a ConfigurationException will be thrown.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also