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