Methods / Methods for Manual Work Items (Tasks) |
Web Services
Marks a work item as completed.
public virtual WFEvent CompleteWorkItem(string workItemID)
Name | Description |
---|---|
workItemID |
|
WFEvent object that provides the status of the transaction. The possible statuses are:
IWFWorkflowService svc = GetWorkflowService(); string workItemID = …// work item ID try { WFEvent evt = svc.CompleteWorkItem(workItemID); } catch( Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher