System.Xml.Schema.XmlSchemaObjectCollection.OnSet C# (CSharp) Method

OnSet() protected method

protected OnSet ( int index, object oldValue, object newValue ) : void
index int
oldValue object
newValue object
return void
        protected override void OnSet(int index, object oldValue, object newValue) {
            if (parent != null) {
                parent.OnRemove(this, oldValue);
                parent.OnAdd(this, newValue);
            }
        }