Hello ,
I am able to start a workflow with input parameter from my application code but want to get the result output values?
//Starting workflow WorkflowConnection connection = WorkflowConnection.CreateConnection("Localhost", "APP"); Dictionary<string, string> parameters = new Dictionary<string, string>(); PublishedWorkflow newEmployeeWF = connection.Database.GetPublishedWorkflow("Numeric Arabic Literal"); parameters.Add("Value_in", "343434"); newEmployeeWF.StartWorkflow(parameters); // want the output parameters values?