Freigeben über


ProfileSettingsCollection.Contains(String) Methode

Definition

Gibt an, ob die Auflistung ein ProfileSettings-Objekt mit dem angegebenen Namen enthält.

public:
 bool Contains(System::String ^ name);
public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean

Parameter

name
String

Der Name eines ProfileSettings-Objekts in der Auflistung.

Gibt zurück

Boolean

true, wenn die Auflistung ein ProfileSettings-Objekt mit dem angegebenen name enthält, andernfalls false.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der Contains-Methode veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die HealthMonitoringSection Klasse bereitgestellt wird.

// 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"))

Gilt für

Siehe auch