At the moment I’m capturing any relevant exceptions, then using an If activity to decide whether to continue processing or not. In non workflow code I’d just continue to the next item.
Is there a Workflow equivalent to continue?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Neither continue, nor break for that matter, are natively implemented inside WF. You can easily implement it with a custom NativeActivity.
Check this link for the official samples. At WF\Basic\Built-InActivities\EmulatingBreakInWhile folder you’ve an example on how to emulate break behaviour. Same thing can be done to continue.