Sdílet prostřednictvím


SchemeSettingElementCollection.Item[] Vlastnost

Definice

Přistupuje k instanci SchemeSettingElementCollection třídy .

Přetížení

Item[Int32]

Získá položku v zadaném indexu v kolekci SchemeSettingElementCollection .

Item[String]

Získá položku z SchemeSettingElementCollection kolekce.

Item[Int32]

Zdroj:
SchemeSettingElementCollection.cs
Zdroj:
SchemeSettingElementCollection.cs
Zdroj:
SchemeSettingElementCollection.cs

Získá položku v zadaném indexu v kolekci SchemeSettingElementCollection .

public:
 property System::Configuration::SchemeSettingElement ^ default[int] { System::Configuration::SchemeSettingElement ^ get(int index); };
public System.Configuration.SchemeSettingElement this[int index] { get; }
member this.Item(int) : System.Configuration.SchemeSettingElement
Default Public ReadOnly Property Item(index As Integer) As SchemeSettingElement

Parametry

index
Int32

Index vráceného objektu SchemeSettingElement .

Hodnota vlastnosti

Zadaný parametr SchemeSettingElement.

Výjimky

Parametr index je menší než nula.

-nebo-

Položka určená parametrem je null nebo byla odebrána.

Poznámky

Item[] Vlastnost použijte k získání nebo nastavení zadaného SchemeSettingElement objektu obsaženého v této SchemeSettingElementCollection třídě.

Viz také

Platí pro

Item[String]

Zdroj:
SchemeSettingElementCollection.cs
Zdroj:
SchemeSettingElementCollection.cs
Zdroj:
SchemeSettingElementCollection.cs

Získá položku z SchemeSettingElementCollection kolekce.

public:
 property System::Configuration::SchemeSettingElement ^ default[System::String ^] { System::Configuration::SchemeSettingElement ^ get(System::String ^ name); };
public System.Configuration.SchemeSettingElement this[string name] { get; }
member this.Item(string) : System.Configuration.SchemeSettingElement
Default Public ReadOnly Property Item(name As String) As SchemeSettingElement

Parametry

name
String

Řetězec odkaz na SchemeSettingElement objekt v rámci kolekce.

Hodnota vlastnosti

Objekt SchemeSettingElement obsažený v kolekci.

Poznámky

Vrácená hodnota je null , pokud položka nebyla nalezena nebo byla odebrána.

Viz také

Platí pro