Beispiel #1
0
        public dynUDPListener()
        {
            InPortData.Add(new Connectors.PortData("exec", "Execution Interval", typeof(object)));
               InPortData.Add(new Connectors.PortData("udp port", "A UDP port to listen to.", typeof(object)));
               OutPortData = new Connectors.PortData("str", "The string returned from the web request.", typeof(object));

               base.RegisterInputsAndOutputs();
        }
Beispiel #2
0
        public dynWebRequest()
        {
            InPortData.Add(new Connectors.PortData("url", "A URL to query.", typeof(dynString)));
             OutPortData = new Connectors.PortData("str", "The string returned from the web request.", typeof(dynString));
             //OutPortData[0].Object = this.Tree;

             base.RegisterInputsAndOutputs();
        }