Exemplo n.º 1
0
        internal void ContinueLoop()
        {
            if (!currentQueue.HasLoopEndInParents)
            {
                throw new Exception("Continue was used out of loop event!!");
            }

            currentQueue = currentQueue.GetLoopEndParent();
            currentQueue.ClearChildEvents();
            var eventSet = currentQueue.GetEventSet();

            if (eventSet == null)
            {
                return;
            }
            ProcessEvent(eventSet, new FlowEventArgs(eventSet.Source, false));
        }