RuleSettingsCollection.Insert(Int32, RuleSettings) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Dodaje określony RuleSettings obiekt do określonego punktu indeksu w kolekcji.
public:
void Insert(int index, System::Web::Configuration::RuleSettings ^ eventSettings);
public void Insert (int index, System.Web.Configuration.RuleSettings eventSettings);
member this.Insert : int * System.Web.Configuration.RuleSettings -> unit
Public Sub Insert (index As Integer, eventSettings As RuleSettings)
Parametry
- index
- Int32
Prawidłowy indeks RuleSettings obiektu w kolekcji.
- eventSettings
- RuleSettings
RuleSettings Obiekt do wstawienia do kolekcji.
Wyjątki
RuleSettings Obiekt do dodania już istnieje w kolekcji, indeks jest nieprawidłowy lub kolekcja jest tylko do odczytu.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Insert metody . Ten przykład kodu jest częścią większego przykładu podanego HealthMonitoringSection dla klasy.
// Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1,
new RuleSettings("All Errors Default2",
"All Errors", "EventLogProvider"));
' Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1, _
new RuleSettings("All Errors Default2", _
"All Errors", "EventLogProvider"))
Uwagi
Jeśli parametr indeksu jest równy liczbie elementów w kolekcji, wpis jest dołączany na końcu kolekcji.