TagPrefixCollection.Item[Int32] Property

Definition

Gets or sets the TagPrefixInfo object at the specified index location.

public System.Web.Configuration.TagPrefixInfo this[int index] { get; set; }

Parameters

index
Int32

The index of a TagPrefixInfo object in the collection.

Property Value

The TagPrefixInfo 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.

// Get all current Controls in the collection.
for (int i = 0; i < pagesSection.Controls.Count; i++)
{
  Console.WriteLine("Control {0}:", i);
  Console.WriteLine("  TagPrefix = '{0}' ",
      pagesSection.Controls[i].TagPrefix);
  Console.WriteLine("  TagName = '{0}' ",
      pagesSection.Controls[i].TagName);
  Console.WriteLine("  Source = '{0}' ",
      pagesSection.Controls[i].Source);
  Console.WriteLine("  Namespace = '{0}' ",
      pagesSection.Controls[i].Namespace);
  Console.WriteLine("  Assembly = '{0}' ",
      pagesSection.Controls[i].Assembly);
}

Remarks

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

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