Example #1
0
        /// <summary>
        /// Returns a list of the names of the children of the node whose guid is passed
        /// </summary>
        /// <param name="guid"></param>
        /// <returns></returns>
        public List <string> GetChildNames(uint guid)
        {
            Node node = GetNode(guid);

            return(node.GetChildNames());
        }