StateManagedCollection.OnInsert(Int32, Object) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
En cas de substitution dans une classe dérivée, exécute une tâche supplémentaire avant que la méthode IList.Insert(Int32, Object) ou IList.Add(Object) ajoute un élément à la collection.
protected:
virtual void OnInsert(int index, System::Object ^ value);
protected virtual void OnInsert (int index, object value);
abstract member OnInsert : int * obj -> unit
override this.OnInsert : int * obj -> unit
Protected Overridable Sub OnInsert (index As Integer, value As Object)
Paramètres
- index
- Int32
Index de base zéro au niveau duquel value
doit être inséré par la méthode IList.Insert(Int32, Object).
- value
- Object
Objet à insérer dans StateManagedCollection.
Remarques
Les collections dérivées de StateManagedCollection peuvent remplacer la OnInsert méthode pour effectuer tout travail supplémentaire avant qu’un élément ne soit ajouté à la collection à l’aide de la ou IList.Insert de la IList.Add méthode.