ProfileSettingsCollection.Contains(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.
Wskazuje, czy kolekcja zawiera ProfileSettings obiekt o określonej nazwie.
public:
bool Contains(System::String ^ name);
public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean
Parametry
- name
- String
Nazwa ProfileSettings obiektu w kolekcji.
Zwraca
true
jeśli kolekcja zawiera ProfileSettings obiekt z określonym name
; false
w przeciwnym razie .
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Contains metody . Ten przykład kodu jest częścią większego przykładu podanego HealthMonitoringSection dla klasy.
// See if the ProfileSettings collection property contains the event 'Default'.
Console.WriteLine("Profiles contains 'Default': {0}.",
healthMonitoringSection.Profiles.Contains("Default"));
' See if the ProfileSettings collection property contains the event 'Default'.
Console.WriteLine("Profiles contains 'Default': {0}.", _
healthMonitoringSection.Profiles.Contains("Default"))