Example #1
0
 ///Bind the port to the target FlowInput
 public void BindTo(FlowInput target)
 {
     this.pointer = target.pointer;
 }
Example #2
0
 public FlowInput AddFlowInput(string name, FlowHandler pointer, string ID = "")
 {
     QualifyPortNameAndID(ref name, ref ID, inputPorts);
     return((FlowInput)(inputPorts[ID] = new FlowInput(this, name, ID, pointer)));
 }