Example #1
0
        internal string GetSlotName()
        {
            if (this.owners.Count() <= 0)
            {
                throw new InvalidDataException("'owners' cannot be empty or null");
            }

            uint       nodeId = this.owners[0];
            VisualNode node   = this.graphController.GetVisualNode(nodeId);

            return(node.GetSlotName(this.slotType, this.slotId));
        }