Compartir a través de


ProfileSettingsCollection.Insert(Int32, ProfileSettings) Método

Definición

Inserta el objeto ProfileSettings especificado en el índice especificado de la colección.

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)

Parámetros

index
Int32

Índice de un objeto ProfileSettings de la colección.

authorizationSettings
ProfileSettings

Objeto ProfileSettings que se va a insertar en la colección.

Excepciones

El objeto ProfileSettings que se va a agregar ya existe en la colección, el índice no es válido o la colección es de sólo lectura.

Ejemplos

En el ejemplo de código siguiente, se muestra cómo se utiliza el método Insert. Este ejemplo de código es parte de un ejemplo mayor proporcionado para la clase HealthMonitoringSection.

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

Comentarios

Si el index parámetro es igual al número de elementos de la colección, la entrada se anexa al final de la colección.

Se aplica a

Consulte también