TagMapCollection.Add Method (TagMapInfo)

 

Adds a TagMapInfo object to the collection.

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

Public Sub Add (
	tagMapInformation As TagMapInfo
)

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: