Methods / Methods for Manual Work Items (Tasks) |
Unassigns a work item that was previously assigned to a user. This method applies to work items that can be assigned to members of task groups, where a work item can be assigned to or claimed by any of a group of users. The extended method includes client data.
WFEvent object that provides the status of the transaction. Possible statuses are Success, Failed, and Sent.
string url = "http://[hostname]:[port]/AgilePointServer"; string workItemID = …// for example, "03ABD59A0EB74D7A8741709478E83877"; string clientData = …/// try { WFEvent evt = svc.UndoAssignWorkItemEx(workItemID, clientData); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }