TagMapCollection.Add Method (TagMapInfo)

 

Adds a TagMapInfo object to the collection.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

public void Add(
	TagMapInfo tagMapInformation
)

Parameters

tagMapInformation
Type: System.Web.Configuration.TagMapInfo

A TagMapInfo object to add to the collection.

Exception Condition
ConfigurationException

The TagMapInfo object to add already exists in the collection.

- or -

The collection is read-only.

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

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 TagMapInfo object using a constructor.
pagesSection.TagMapping.Add(
    new System.Web.Configuration.TagMapInfo(
    "MyNameSpace.MyControl", "MyNameSpace.MyOtherControl"));

.NET Framework
Available since 2.0
Return to top
Show: