Continue

Continues the loop execution by skipping the next activities after break and moving to the next iteration. For instance, if we place continue in a foreach activity, then the foreach activity will skip all the activities after continue and move to the next iteration. It can be used for loop activities like foreach, parallelforeach, throttledparallelforeach, while, dowhile, web list enumerator or parallel.

Continue Designer

Properties#

Continue Properties

General Properties#

See General Properties.

Misc#

See Misc.

Out Error#

See Out Error.

Example#

Continue

In this example, we use a foreach loop to write the numbers from 1 to 5 to the output panel, but because we have a "Continue" activity when the item is 3, the loop will write to the output panel all the numbers from 1 to 5 except 3.