ProfileSettingsCollection.Item[] Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví zadaný ProfileSettings objekt.
Přetížení
Item[Int32] |
Získá nebo nastaví ProfileSettings objekt v zadaném číselném indexu v kolekci. |
Item[String] |
ProfileSettings Získá objekt na základě zadaného klíče v kolekci. |
Item[Int32]
Získá nebo nastaví ProfileSettings objekt v zadaném číselném indexu v kolekci.
public:
property System::Web::Configuration::ProfileSettings ^ default[int] { System::Web::Configuration::ProfileSettings ^ get(int index); void set(int index, System::Web::Configuration::ProfileSettings ^ value); };
public System.Web.Configuration.ProfileSettings this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.ProfileSettings with get, set
Default Public Property Item(index As Integer) As ProfileSettings
Parametry
- index
- Int32
Index objektu ProfileSettings v kolekci.
Hodnota vlastnosti
Objekt ProfileSettings v zadaném indexu nebo null
pokud na daném indexu neexistuje žádný objekt.
Příklady
Následující příklad kódu ukazuje, jak použít metodu Item[] . Tento příklad kódu je součástí většího příkladu HealthMonitoringSection pro třídu.
profileSetting = healthMonitoringSection.Profiles[i];
profileSetting = healthMonitoringSection.Profiles(i)
Viz také
Platí pro
Item[String]
ProfileSettings Získá objekt na základě zadaného klíče v kolekci.
public:
property System::Web::Configuration::ProfileSettings ^ default[System::String ^] { System::Web::Configuration::ProfileSettings ^ get(System::String ^ key); };
public System.Web.Configuration.ProfileSettings this[string key] { get; }
member this.Item(string) : System.Web.Configuration.ProfileSettings
Default Public ReadOnly Property Item(key As String) As ProfileSettings
Parametry
- key
- String
Název objektu obsaženého ProfileSettings v kolekci.
Hodnota vlastnosti
Objekt ProfileSettings .