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"))