Condividi tramite


RuleSettingsCollection.IndexOf(String) Metodo

Definizione

Trova l'indice di un oggetto RuleSettings nell'insieme con il nome specificato.

public:
 int IndexOf(System::String ^ name);
public int IndexOf (string name);
member this.IndexOf : string -> int
Public Function IndexOf (name As String) As Integer

Parametri

name
String

Nome di un oggetto RuleSettings nell'insieme.

Restituisce

Indice di un oggetto RuleSettings nell'insieme con il nome specificato.

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo IndexOf. Questo esempio di codice fa parte di un esempio più grande fornito per la HealthMonitoringSection classe.

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

Commenti

Restituisce -1 se un RuleSettings oggetto con il nome specificato non è presente nell'insieme.

Si applica a

Vedi anche