次の方法で共有


RuleSettingsCollection.Contains(String) メソッド

定義

指定した名前の RuleSettings オブジェクトがコレクションに格納されている場合は true を返します。

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

コレクション内の RuleSettings オブジェクトの名前。

戻り値

Boolean

指定した名前の RuleSettings オブジェクトがコレクションに格納されている場合は true。それ以外の場合は false

Contains メソッドを使用するコード例を次に示します。 このコード例は、HealthMonitoringSection クラスのために提供されている大規模な例の一部です。

// See if the Rules collection property contains the RuleSettings 'All Errors Default'.
Console.WriteLine("EventMappings contains 'All Errors Default': {0}.",
    healthMonitoringSection.Rules.Contains("All Errors Default"));
' See if the Rules collection property contains the RuleSettings 'All Errors Default'.
Console.WriteLine("EventMappings contains 'All Errors Default': {0}.", _
    healthMonitoringSection.Rules.Contains("All Errors Default"))

注釈

false指定した名前が存在しない場合に返します。

適用対象

こちらもご覧ください