AjaxControlToolkit.ReorderListItem.OnBubbleEvent C# (CSharp) Method

OnBubbleEvent() protected method

protected OnBubbleEvent ( object source, EventArgs args ) : bool
source object
args System.EventArgs
return bool
        protected override bool OnBubbleEvent(object source, EventArgs args)
        {
            var ceargs = args as CommandEventArgs;
            if(null != ceargs) {
                var e = new ReorderListCommandEventArgs(ceargs, source, this);

                RaiseBubbleEvent(this, e);
                return true;
            }
            return true;
        }