TagMapCollection.Add(TagMapInfo) Method

Definition

Adds a TagMapInfo object to the collection.

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

Parameters

tagMapInformation
TagMapInfo

A TagMapInfo object to add to the collection.

Exceptions

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

Remarks

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

Applies to

See also