3 writes to activities
System.Workflow.ComponentModel (3)
AuthoringOM\Activity.cs (3)
1927this.activities = new ActivityCollection(this); 1947this.activities = new ActivityCollection(this); 2285this.activities = new ActivityCollection(this);
23 references to activities
System.Workflow.ComponentModel (23)
AuthoringOM\Activity.cs (23)
1928this.activities.ListChanging += new EventHandler<ActivityCollectionChangeEventArgs>(OnListChangingEventHandler); 1929this.activities.ListChanged += new EventHandler<ActivityCollectionChangeEventArgs>(OnListChangedEventHandler); 1941this.activities.Add(child); 1948this.activities.ListChanging += new EventHandler<ActivityCollectionChangeEventArgs>(OnListChangingEventHandler); 1949this.activities.ListChanged += new EventHandler<ActivityCollectionChangeEventArgs>(OnListChangedEventHandler); 2103return this.activities; 2132foreach (Activity activity in this.activities) 2150foreach (Activity activity in this.activities) 2171if (index >= this.activities.Count) 2174Activity nextActivity = this.activities[index]; 2198foreach (Activity childActivity in (IList)this.activities) 2206lookupPath += this.activities.IndexOf(childActivity).ToString(CultureInfo.InvariantCulture); 2231foreach (Activity childActivity in this.activities) 2244foreach (Activity childActivity in this.activities) 2264if (this.activities != null) 2270foreach (Activity childActivity in this.activities) 2271childActivity.FixUpMetaProperties(originalCompositeActivity.activities[index++]); 2286this.activities.ListChanging += new EventHandler<ActivityCollectionChangeEventArgs>(OnListChangingEventHandler); 2287this.activities.ListChanged += new EventHandler<ActivityCollectionChangeEventArgs>(OnListChangedEventHandler); 2294foreach (Activity definitionChildActivity in definitionCompositeActivity.activities) 2297this.activities.InnerAdd(childActivity); 2307Queue<Activity> activityQueue = new Queue<Activity>(this.activities); 2314foreach (Activity nestedChildActivity in ((CompositeActivity)nestedActivity).activities)