TransformerInfoCollection.Item[Int32] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the TagMapInfo object at the specified index location.
public:
property System::Web::Configuration::TransformerInfo ^ default[int] { System::Web::Configuration::TransformerInfo ^ get(int index); void set(int index, System::Web::Configuration::TransformerInfo ^ value); };
public System.Web.Configuration.TransformerInfo this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.TransformerInfo with get, set
Default Public Property Item(index As Integer) As TransformerInfo
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);
}
' Show all TransformerInfo objects in the collection.
Dim ti As Integer
For ti = 0 To webPartsSection.Personalization.Providers.Count - 1
Console.WriteLine(" #{0} Name={1} Type={2}", ti, _
webPartsSection.Transformers(ti).Name, _
webPartsSection.Transformers(ti).Type)
Next
Remarks
The Item[Int32] property overwrites the TransformerInfo object if it already exists; otherwise, a new object is created and added to the collection.