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 对象名。

返回

Int32

指定的 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"))

适用于

另请参阅