TagMapCollection.Add(TagMapInfo) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.