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

Применяется к

См. также раздел