BcsExplorerDemo.MenuItemVisitor.VisitLocation C# (CSharp) Method

VisitLocation() protected method

protected VisitLocation ( BcsLocationNode locationNode ) : void
locationNode BcsResolver.Parser.BcsLocationNode
return void
        protected override void VisitLocation(BcsLocationNode locationNode)
        {
            var item = new MenuItem() { Title = $"Location: {locationNode.Name}" };
            AddToTree(locationNode, item);
        }