StateManagedCollection.OnInsertComplete(Int32, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,在 IList.Insert(Int32, Object) 或 IList.Add(Object) 方法將項目加入集合之後,執行額外工作。
protected:
virtual void OnInsertComplete(int index, System::Object ^ value);
protected virtual void OnInsertComplete (int index, object value);
abstract member OnInsertComplete : int * obj -> unit
override this.OnInsertComplete : int * obj -> unit
Protected Overridable Sub OnInsertComplete (index As Integer, value As Object)
參數
- index
- Int32
IList.Insert(Int32, Object) 方法插入 value
處之以零為起始的索引。
- value
- Object
插入 StateManagedCollection 的物件。
備註
衍生自 StateManagedCollection 的集合可以覆寫 方法, OnInsertComplete 以在使用 IList.Add 或 IList.Insert 方法將專案新增至集合之後執行任何其他工作。