Methods / Methods for Process Instances |
Web Services
Resumes a suspended process instance. The process instance status is changed to running, and the statuses of all the work items (tasks) become Active.
public virtual WFEvent ResumeProcInst(String processInstanceID)
Name | Description |
---|---|
processInstanceID |
|
WFEvent object that provides the status of the transaction. The possible statuses are:
// This is console application sample IWFWorkflowService svc = GetWorkflowService(); try { string processInstanceID = …// process instance to be suspended. WFEvent event = svc.ResumeProcInst(processInstanceID); } catch (Exception ex) { Console.WriteLine("Failed: " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher