TransformerInfoCollection.Item[Int32] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'objet TagMapInfo à l'emplacement d'index spécifié.
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
Paramètres
- index
- Int32
Index d'un objet TransformerInfo dans la collection.
Valeur de propriété
Objet TransformerInfo au niveau d'index spécifié ou null
s'il n'existe aucun objet à ce niveau.
Exemples
L'exemple de code suivant montre comment utiliser la propriété Item[]. Cet exemple de code fait partie d’un exemple plus grand fourni pour la WebPartsSection classe.
// 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
Remarques
La Item[Int32] propriété remplace l’objet TransformerInfo s’il existe déjà ; sinon, un nouvel objet est créé et ajouté à la collection.