ProfileSettingsCollection.Insert(Int32, ProfileSettings) 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.
Wstawia określony ProfileSettings obiekt do określonego indeksu w kolekcji.
public:
void Insert(int index, System::Web::Configuration::ProfileSettings ^ authorizationSettings);
public void Insert (int index, System.Web.Configuration.ProfileSettings authorizationSettings);
member this.Insert : int * System.Web.Configuration.ProfileSettings -> unit
Public Sub Insert (index As Integer, authorizationSettings As ProfileSettings)
Parametry
- index
- Int32
Indeks ProfileSettings obiektu w kolekcji.
- authorizationSettings
- ProfileSettings
ProfileSettings Obiekt do wstawienia do kolekcji.
Wyjątki
Obiekt do dodania ProfileSettings 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 udostępnionego HealthMonitoringSection dla klasy .
// Insert an ProfileSettings object into the Profiles collection property.
healthMonitoringSection.Profiles.Insert(1, new ProfileSettings("Default2"));
' Insert an ProfileSettings object into the Profiles collection property.
healthMonitoringSection.Profiles.Insert(1, new ProfileSettings("Default2"))
Uwagi
index
Jeśli parametr jest równy liczbie elementów w kolekcji, wpis jest dołączany na końcu kolekcji.