Ejemplo n.º 1
0
 /// <summary>
 ///   sets the execstack of the current command to be sent to the server
 /// </summary>
 /// <param name = "execStack">- current execution stack of raise event operations from rt </param>
 internal void SetExecutionStack(ExecutionStack execStack)
 {
     ExecutionStack = new ExecutionStack();
     ExecutionStack.push(MGDataCollection.Instance.getTaskIdById(TaskTag), HandlerId, OperIdx);
     ExecutionStack.pushUpSideDown(execStack);
 }
Ejemplo n.º 2
0
 /// <summary>
 ///   sets the execstack of the current command to be sent to the server
 /// </summary>
 /// <param name = "execStack">- current execution stack of raise event operations from rt </param>
 internal void setExecStack(ExecutionStack execStack)
 {
     _executionStack = new ExecutionStack();
     _executionStack.push(MGDataTable.Instance.getTaskIdById(TaskTag), _handlerId, _operIdx);
     _executionStack.pushUpSideDown(execStack);
 }