2 writes to addedItems
System.Workflow.ComponentModel (2)
AuthoringOM\ItemList.cs (2)
27this.addedItems = addedItems; 42this.addedItems = new List<T>();
3 references to addedItems
System.Workflow.ComponentModel (3)
AuthoringOM\ItemList.cs (3)
43((List<T>)this.addedItems).Add(addedActivity); 61return (this.addedItems != null) ? new List<T>(this.addedItems).AsReadOnly() : new List<T>().AsReadOnly();