ProfileSettingsCollection.IndexOf(String) Metoda
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.
Zwraca indeks określonego ProfileSettings obiektu.
public:
int IndexOf(System::String ^ name);
public int IndexOf (string name);
member this.IndexOf : string -> int
Public Function IndexOf (name As String) As Integer
Parametry
- name
- String
Nazwa ProfileSettings obiektu w kolekcji.
Zwraca
Indeks określonego ProfileSettings obiektu lub -1, jeśli obiekt nie zostanie znaleziony w kolekcji.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać IndexOf metody . Ten przykład kodu jest częścią większego przykładu podanego HealthMonitoringSection dla klasy.
// Get the index of the 'Default' ProfileSettings in the Profiles collection property.
Console.WriteLine("Profiles index for 'Default': {0}.",
healthMonitoringSection.Profiles.IndexOf("Default"));
' Get the index of the 'Default' ProfileSettings in the Profiles collection property.
Console.WriteLine("Profiles index for 'Default': {0}.", _
healthMonitoringSection.Profiles.IndexOf("Default"))