public FlowInput AddFlowInput(string name, FlowHandler pointer, string ID = "") { if (string.IsNullOrEmpty(ID)) { ID = name; } return((FlowInput)(_inputPorts[ID] = new FlowInput(this, name, ID, pointer))); }
///Bind the port to the target FlowInput public void BindTo(FlowInput target) { this.pointer = target.pointer; }