C# Update Incident's AssignedTo to No Value
Content
I am trying to update the Incident's AssignedTo value to No Value but it is not working. It is still staying assigned to my account. There is nothing in the Incident Rules that would assign it back to my account.
-Andrew W-
Version
February 2016Code Snippet
Incident incident = new Incident(); ID incidentID = new ID(); incidentID.id = x; incidentID.idSpecified = true; incident.ID = incidentID; GroupAccount account = new GroupAccount(); NamedIDHierarchy accountID = new NamedIDHierarchy(); accountID = null; account.Account = accountID; incident.AssignedTo = account;
0