AjaxControlToolkit.ReorderListItem.OnBubbleEvent C# (CSharp) 메소드

OnBubbleEvent() 보호된 메소드

protected OnBubbleEvent ( object source, EventArgs args ) : bool
source object
args System.EventArgs
리턴 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;
        }