In SharePoint workflow, when we are using the if/else activities, the if/ else methods contains Event argument called ConditionalEventArgs.if you set e.Result=true, then if block will executes,if you set e.Result=false, then else block will executes. privatevoid IfMethod(object sender, ConditionalEventArgs e) { if (isTrue) e.Result = true; else e.Result = false; }
privatevoid ElseMethod(object sender, ConditionalEventArgs e) { if (!isTrue) e.Result = true; else e.Result = false; }dependin...
No comments yet, be the first one to post comment.