NamespaceCollection.Add Method (NamespaceInfo)

 

Adds a NamespaceInfo object to the collection.

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

Public Sub Add (
	namespaceInformation As NamespaceInfo
)

Parameters

namespaceInformation
Type: System.Web.Configuration.NamespaceInfo

A NamespaceInfo object to add to the collection.

Exception Condition
ConfigurationException

The NamespaceInfo object to add already exists in the collection or the collection is read-only.

The collection must not already contain a NamespaceInfo object with the same Namespace property value.

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 NamespaceInfo object using a constructor.
pagesSection.Namespaces.Add( _
 New System.Web.Configuration.NamespaceInfo( _
 "System.Collections.Specialized"))

.NET Framework
Available since 2.0
Return to top
Show: