NamespaceCollection.Item[Int32] Property

Definition

Gets or sets the NamespaceInfo object at the specified index in the collection.

C#
public System.Web.Configuration.NamespaceInfo this[int index] { get; set; }

Parameters

index
Int32

The index of a NamespaceInfo object in the collection.

Property Value

NamespaceInfo object at the specified index, or null if there is no object at that index.

Examples

The following code example shows how to use the Item[] property. This code example is part of a larger example provided for the PagesSection class.

C#
// 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);
}

Remarks

This property overwrites the NamespaceInfo object if it already exists at the specified index; otherwise, a new object is created and added to the collection.

Applies to

Produit Versions
.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