예제 #1
0
파일: PathUtil.cs 프로젝트: slicol/meshwork
        public static Network GetNetwork(Core.Core core, string path)
        {
            var parts   = path.Split('/');
            var network = core.GetNetwork(parts[1]);

            if (network == null)
            {
                throw new Exception("Network not found! " + path + " " + parts[1]);
            }
            return(network);
        }
예제 #2
0
파일: PathUtil.cs 프로젝트: slicol/meshwork
        public static Node GetNode(Core.Core core, string path)
        {
            var parts   = path.Split('/');
            var network = core.GetNetwork(parts[1]);
            var node    = network.GetNode(parts[2]);

            if (node == null)
            {
                throw new Exception("Not not found! " + path + " " + parts[2]);
            }
            return(node);
        }