次の方法で共有


EventMappingSettingsCollection.IndexOf(String) メソッド

定義

指定した EventMappingSettings オブジェクトのインデックスを返します。

public:
 int IndexOf(System::String ^ name);
public int IndexOf (string name);
member this.IndexOf : string -> int
Public Function IndexOf (name As String) As Integer

パラメーター

name
String

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

戻り値

指定した EventMappingSettings オブジェクトのインデックス。指定したオブジェクトがコレクションにない場合は -1。

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

// Get the index of the 'HeartBeats' event in the EventMappings collection property.
Console.WriteLine("EventMappings index for 'HeartBeats': {0}.",
    healthMonitoringSection.EventMappings.IndexOf("HeartBeats"));
' Get the index of the 'HeartBeats' event in the EventMappings collection property.
Console.WriteLine("EventMappings index for 'HeartBeats': {0}.", _
    healthMonitoringSection.EventMappings.IndexOf("HeartBeats"))

適用対象

こちらもご覧ください