ProfileSettingsCollection.Item[] Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia określony ProfileSettings obiekt.
Przeciążenia
Item[Int32] |
Pobiera lub ustawia ProfileSettings obiekt w określonym indeksie liczbowym w kolekcji. |
Item[String] |
ProfileSettings Pobiera obiekt na podstawie określonego klucza w kolekcji. |
Item[Int32]
Pobiera lub ustawia ProfileSettings obiekt w określonym indeksie liczbowym w kolekcji.
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
Indeks ProfileSettings obiektu w kolekcji.
Wartość właściwości
ProfileSettings Obiekt w określonym indeksie lub null
jeśli nie ma obiektu w tym indeksie.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Item[] metody . Ten przykład kodu jest częścią większego przykładu podanego HealthMonitoringSection dla klasy.
profileSetting = healthMonitoringSection.Profiles[i];
profileSetting = healthMonitoringSection.Profiles(i)
Zobacz też
Dotyczy
Item[String]
ProfileSettings Pobiera obiekt na podstawie określonego klucza w kolekcji.
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
Nazwa ProfileSettings obiektu zawartego w kolekcji.
Wartość właściwości
Obiekt ProfileSettings.