| Methods / Methods for Automatic Work Items (Procedures) | |
Web Services
Cancels an automatic work item based on supplied specified automatic work item identifier.
public virtual WFEvent CancelProcedure(string workItemID)
| Name | Description |
|---|---|
workItemID |
|
WFEvent object that provides the status of the transaction. The possible statuses are:
IWFWorkflowService svc = GetWorkflowService();
string workItemID = …//
try
{
WFEvent evt = svc.CancelProcedure(workItemID);
}
catch( Exception ex)
{
Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
}
3.2.0.4 and higher