Udostępnij za pośrednictwem


ProfileSettingsCollection.Contains(String) Metoda

Definicja

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

Boolean

true jeśli kolekcja zawiera ProfileSettings obiekt z określonym name; falsew 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"))

Dotyczy

Zobacz też