Liquid XML Data Binder (C++, Java, VB6) / Reference / C# and VB .Net (Deprecated - use Liquid XML Objects) / Reference / AttributeCol / Liquid XML Runtime for .Net - OnCollectionAddComplete - XmlCollectionBase
In This Topic
    Liquid XML Runtime for .Net - OnCollectionAddComplete - XmlCollectionBase
    In This Topic
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    public event OnCollectionAddCompleteEvent OnCollectionAddComplete;
      Property Description  
        Event Name OnCollectionAddComplete  
        Delgate

    public delegate void OnCollectionAddCompleteEvent(object source, XmlCollectionAddEventArgs args);

    public class XmlCollectionAddEventArgs : EventArgs
    {
        private object _item = null;
        public XmlCollectionAddEventArgs(object item) { _item = item; }
        public object item { get { return _item; } } // the item being added
    }

     
        Description Fired after an item is added to the collection.  
        Remarks