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