TagPrefixCollection.Add Method (TagPrefixInfo)

 

Adds a TagPrefixInfo object to the collection.

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

Public Sub Add (
	tagPrefixInformation As TagPrefixInfo
)

Parameters

tagPrefixInformation
Type: System.Web.Configuration.TagPrefixInfo

The TagPrefixInfo object to add to the collection.

Exception Condition
ConfigurationException

The TagPrefixInfo object to add already exists in the collection.

- or -

The collection is read-only.

The collection must not already contain a TagPrefixInfo object with the same property values. 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 TagPrefixInfo object using a constructor.
pagesSection.Controls.Add( _
 New System.Web.Configuration.TagPrefixInfo( _
 "MyCtrl", "MyNameSpace", "MyAssembly", "MyControl", _
 "MyControl.ascx"))

.NET Framework
Available since 2.0
Return to top
Show: