Example #1
0
        private static GetWorkflowChildrenResponse GetChildren(string workflowId)
        {
            var getWorkflowChildrenRequest = new GetWorkflowChildrenRequest
            {
                WorkflowOid = workflowId
            };

            GetWorkflowChildrenResponse children = null;

            using (var src = new FlowTasksService())
            {
                children = src.GetWorkflowChildren(getWorkflowChildrenRequest);
            }

            return(children);
        }