Skip to content

CompletedBy

Gets the identity of the user who completed the work item.

1
readonly Identity myWorkItem.CompletedBy

Remarks

This property is populated when the work item is committed by a user. Otherwise, it returns null.
When a work item is processed by the system (through scripting or a module-type task), this property returns null.

Finding and setting the identity of a person who completed the work item:

1
$Xml.SetValue("Identity", $WorkItem.CompletedBy);

See Also