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

如果集合包含具有指定 nameProfileSettings 对象,则为 true;否则为 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"))

适用于

另请参阅