-2

我创建了一个工作流定义,其中包含许多任务步骤并为此创建了实例。如何在运行实例时获取所有任务和每个任务状态的列表?

4

1 回答 1

0

cDevWorkflow API 非常强大,它完全支持您的工作流任务。在 deInstance 类的帮助下,您将获得从实例创建的所有任务的列表。以下代码可能对您有所帮助:

        string connectString = ""; //get your workflow db connection string
        string currentUserId = ""; //get current userid
        string instanceId = ""; //get instance id to get the tasks

        deRuntime oRuntime = new deRuntime(connectString, currentUserId);
        deInstance oInstance = oRuntime.getInstance(instanceId);
        DataTable oTasks = oInstance.getTasks();

        //from the datatable oTasks you can see the status of each task

希望这可以帮助..!

于 2013-09-05T13:50:06.743 回答