ProfileSettingsCollection.Contains(String) Метод

Определение

Указывает содержит ли коллекция объект ProfileSettings с указанным именем.

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

Параметры

name
String

Имя объекта ProfileSettings в коллекции.

Возвращаемое значение

Boolean

true, если коллекция содержит объект ProfileSettings с указанным name, в противном случае false.

Примеры

В следующем примере кода показано применение метода Contains. Этот пример кода является частью более крупного примера, предоставленного HealthMonitoringSection для класса.

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

Применяется к

См. также раздел