![]() | RemWorkflowGetNextSteps Method |
Namespace: Paperwork.Connect
public rKeyPairItems GetNextSteps( string processId, string activityId )
public void GetNextSteps() { string processId = "PROCESS_ID"; string activityId = "ACTIVITY_ID"; rKeyPairItems retval = p.rWorkflow.GetNextSteps(processId, activityId); foreach (var item in retval.Items) { Console.WriteLine(item.ID); Console.WriteLine(item.Name); } Console.ReadLine(); }