NamespaceInfo Class
Assembly: System.Web (in system.web.dll)
The NamespaceCollection contains NamespaceInfo objects, which correspond to the add elements within the namespaces section. Each NamespaceInfo object is the same as an Import (<%@ Import %>) directive that applies to all pages and controls in the scope of the configuration file. The Import directive allows you to import a namespace into your ASP.NET page, making all its classes available for use on your page.
This example demonstrates how to specify values declaratively for properties of the NamespaceCollection and NamespaceInfo classes.
The following configuration file example shows how to specify values declaratively for the namespaces section.
<system.web>
<pages>
<namespaces>
<add namespace="System" />
<add namespace="System.Collections" />
<add namespace="System.Collections.Specialized" />
<add namespace="System.ComponentModel" />
<add namespace="System.Configuration" />
<add namespace="System.Web" />
</namespaces>
</pages>
</system.web>
The following code example demonstrates how to use the NamespaceInfo class. This code example is part of a larger example provided for the PagesSection class.