StateManagedCollection.OnInsert(Int32, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,在 IList.Insert(Int32, Object) 或 IList.Add(Object) 方法將項目加入集合之前,執行額外工作。
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)
參數
- index
- Int32
IList.Insert(Int32, Object) 方法應該插入 value
處之以零為起始的索引。
- value
- Object
要插入 StateManagedCollection 的物件。
備註
衍生自 StateManagedCollection 的 OnInsert 集合可以覆寫 方法來執行任何其他工作,再使用 IList.Add 或 IList.Insert 方法將專案新增至集合。