Question

When I rehost a designer, I can declare variables and their scopes. However, not all activities can be the scope of a variable. I notice Sequence, Parallel, PickBranch can be the host, but Pick, If, Delay, can't. And all of my custom activities currently cannot be the scope of a variable. What should I do to make a custom activity able to be the scope of variables?

Was it helpful?

Solution

It only makes sense to add variables to activities that can have multiple child activities execute. As a result If, Delay etc can't and Sequence, While etc can.

If you want to create you own composite activity add a public Collection<Variable> Variables { get; } to your activity and initialize the collection in the constructor.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top