Поделиться через


RuleSettingsCollection.IndexOf(String) Метод

Определение

Находит индекс объекта RuleSettings в коллекции с указанным именем.

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

Имя объекта RuleSettings в коллекции.

Возвращаемое значение

Индекс объекта RuleSettings в коллекции с указанным именем.

Примеры

В следующем примере кода показано применение метода IndexOf. Этот пример входит в состав более крупного примера использования класса HealthMonitoringSection.

// Get the index of the 'All Errors Default' RuleSettings in the Rules collection property.
Console.WriteLine("EventMappings index for 'All Errors Default': {0}.",
    healthMonitoringSection.Rules.IndexOf("All Errors Default"));
' Get the index of the 'All Errors Default' RuleSettings in the Rules collection property.
Console.WriteLine("EventMappings index for 'All Errors Default': {0}.", _
    healthMonitoringSection.Rules.IndexOf("All Errors Default"))

Комментарии

Возвращает значение -1, RuleSettings если объект с указанным именем отсутствует в коллекции.

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

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