Aug
7
2009
Workflows can be run synchronously and asynchronously. Below is an example how you run a workflow instance synchronously:
Dictionary<string, object> inputs = new Dictionary();
inputs.Add("InArgument", "SomeValue");
inputs.Add("InOutArgument", "SomeOtherValue");
WorkflowEleme...
[More]