EventMappingSettingsCollection.IndexOf(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定的 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"))