| Methods / Methods for Manual Work Items (Tasks) |
| Name | Type | Description |
|---|---|---|
| wID | string | A 32-byte unique work item (task) ID that represents a manual work item. |
IWFWorkflowService svc = GetWorkflowService();
string workItemID = …// for example, "54A648A0A3004A02981E7F0848820FE7";
try
{
WFAutomaticWorkItem workItem = svc.GetWorkItem(workItemID);
Console.WriteLine("{0}", workItem.Name);
}
catch( Exception ex)
{
Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
}