Compartir a través de


TagPrefixCollection.Item[Int32] Propiedad

Definición

Obtiene o establece el objeto TagPrefixInfo situado en la ubicación de índice especificada.

public:
 property System::Web::Configuration::TagPrefixInfo ^ default[int] { System::Web::Configuration::TagPrefixInfo ^ get(int index); void set(int index, System::Web::Configuration::TagPrefixInfo ^ value); };
public System.Web.Configuration.TagPrefixInfo this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.TagPrefixInfo with get, set
Default Public Property Item(index As Integer) As TagPrefixInfo

Parámetros

index
Int32

Índice de un objeto TagPrefixInfo de la colección.

Valor de propiedad

TagPrefixInfo

El objeto TagPrefixInfo situado en el índice especificado, o null si no hay ningún objeto en ese índice.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad Item[]. Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la PagesSection clase .

// 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);
}
' Get all current Controls in the collection.
Dim j As Int32
For j = 0 To pagesSection.Controls.Count - 1
  Console.WriteLine("Control {0}:", j)
  Console.WriteLine("  TagPrefix = '{0}' ", _
   pagesSection.Controls(j).TagPrefix)
  Console.WriteLine("  TagName = '{0}' ", _
   pagesSection.Controls(j).TagName)
  Console.WriteLine("  Source = '{0}' ", _
   pagesSection.Controls(j).Source)
  Console.WriteLine("  Namespace = '{0}' ", _
   pagesSection.Controls(j).Namespace)
  Console.WriteLine("  Assembly = '{0}' ", _
   pagesSection.Controls(j).Assembly)
Next

Comentarios

Esta propiedad sobrescribe el TagPrefixInfo objeto si ya existe en el índice especificado; de lo contrario, se crea un nuevo objeto y se agrega a la colección.

Se aplica a

Consulte también