BcsExplorerDemo.MenuItemVisitor.VisitComponent C# (CSharp) 메소드

VisitComponent() 보호된 메소드

protected VisitComponent ( BcsComponentNode bcsComponent ) : void
bcsComponent BcsResolver.Parser.BcsComponentNode
리턴 void
        protected override void VisitComponent(BcsComponentNode bcsComponent)
        {
            var item = new MenuItem() { Title = $"Component: {bcsComponent.Name}::{bcsComponent?.Location?.Name ?? string.Empty}" };

            AddToTree(bcsComponent, item);
        }