PagesSection.Namespaces Property

Definition

Gets a collection of NamespaceInfo objects.

[System.Configuration.ConfigurationProperty("namespaces")]
public System.Web.Configuration.NamespaceCollection Namespaces { get; }

Property Value

A NamespaceCollection of NamespaceInfo objects.

Attributes

Examples

The following code example shows how to use the Namespaces property.

       // Get the AutoImportVBNamespace property.
       Console.WriteLine("AutoImportVBNamespace: '{0}'",
           pagesSection.Namespaces.AutoImportVBNamespace.ToString());

       // Set the AutoImportVBNamespace property.
       pagesSection.Namespaces.AutoImportVBNamespace = true;

       // Get all current Namespaces in the collection.
       for (int i = 0; i < pagesSection.Namespaces.Count; i++)
       {
         Console.WriteLine(
             "Namespaces {0}: '{1}'", i,
             pagesSection.Namespaces[i].Namespace);
       }

       // Create a new NamespaceInfo object.
       System.Web.Configuration.NamespaceInfo namespaceInfo =
           new System.Web.Configuration.NamespaceInfo("System");

       // Set the Namespace property.
       namespaceInfo.Namespace = "System.Collections";

       // Execute the Add Method.
       pagesSection.Namespaces.Add(namespaceInfo);

       // Add a NamespaceInfo object using a constructor.
       pagesSection.Namespaces.Add(
           new System.Web.Configuration.NamespaceInfo(
           "System.Collections.Specialized"));

       // Execute the RemoveAt method.
       pagesSection.Namespaces.RemoveAt(0);

       // Execute the Clear method.
       pagesSection.Namespaces.Clear();

       // Execute the Remove method.
       pagesSection.Namespaces.Remove("System.Collections");

       // Get the current AutoImportVBNamespace property value.
       Console.WriteLine(
           "Current AutoImportVBNamespace value: '{0}'",
           pagesSection.Namespaces.AutoImportVBNamespace);

       // Set the AutoImportVBNamespace property to false.
       pagesSection.Namespaces.AutoImportVBNamespace = false;

Remarks

The TagPrefixInfo objects correspond to the @ Import directive on an ASP.NET page. The Import directive allows you to specify namespaces that are automatically imported into all the pages of an application.

Applies to

Producto Versiones
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also