Ejemplo n.º 1
0
        public void AddExecutionNode(ExecutionNode node)
        {
            if (executionNodes.ContainsKey(node.ID))
            {
                throw new InvalidOperationException(string.Format("AddExecutionNode: ExecutionTree already contains a node with ID `{0}`.", node.ID));
            }

            executionNodes.Add(node.ID, node);
        }