TransformerInfoCollection.Item[Int32] Property

Definition

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

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

Parameters

index
Int32

The index of a TransformerInfo object in the collection.

Property Value

The TransformerInfo 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 WebPartsSection class.

// Show all TransformerInfo objects in the collection.
for (int ti = 0;
    ti < webPartsSection.Personalization.Providers.Count; ti++)
{
    Console.WriteLine("  #{0} Name={1} Type={2}", ti,
        webPartsSection.Transformers[ti].Name,
        webPartsSection.Transformers[ti].Type);
}

Remarks

The Item[Int32] property overwrites the TransformerInfo object if it already exists; otherwise, a new object is created and added to the collection.

Applies to

Produto Versões
.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