I want to create a compound Windows workflow operation (in .NET.NET) that contains a predefined ReceiveAndSendReply operation. Some of the properties are predefined, but others must be set in the designer (in particular, ServiceContractName).
I could implement this as an Activity Pattern (just like ReceiveAndSendReply is implemented), but it probably won't. If you later change the template, I will have to update all previously created workflows manually. The template will also allow other developers to change the properties that need to be fixed.
Is there a way to do this from Xaml Activity? I have not found a way to assign an Argument value to an inline activity property. If not, what method would you suggest?
source
share