Beispiel #1
0
 public ExecutionStackItem(IFlowExecutionComponent component)
 {
     this.component = component;
 }
Beispiel #2
0
 public FlowInput(IFlowExecutionComponent owner, string propertyName)
 {
     this.owner        = owner;
     this.propertyName = propertyName;
 }
Beispiel #3
0
 public ExecutionStackItem(FlowInput flowInput)
 {
     this.flowInput = flowInput;
     this.component = flowInput.Owner;
 }