AjaxControlToolkit.Accordion.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 handled = false;
            var accordionArgs = args as AccordionCommandEventArgs;
            if(accordionArgs != null) {
                OnItemCommand(accordionArgs);
                handled = true;
            }
            return handled;
        }