10 references to ImplementationChildren
System.Activities (10)
System\Activities\Activity.cs (2)
139
if (this.Children.Count > 0 || this.
ImplementationChildren
.Count > 0 || this.ImportedChildren.Count > 0 ||
573
return parent.Children.Contains(this) || parent.
ImplementationChildren
.Contains(this);
System\Activities\ActivityUtilities.cs (2)
666
ProcessChildren(activity, activity.
ImplementationChildren
, ActivityCollectionType.Implementation, !options.SkipPrivateChildren, ref nextActivity, ref activitiesRemaining, ref tempValidationErrors);
783
SetupForProcessing(activity.
ImplementationChildren
, true, ref nextActivity, ref activitiesRemaining);
System\Activities\Statements\Rethrow.cs (1)
106
if (parent.
ImplementationChildren
.Contains(previousActivity))
System\Activities\WorkflowInspectionServices.cs (2)
133
for (i = 0; i < activity.
ImplementationChildren
.Count; i++)
135
yield return activity.
ImplementationChildren
[i];
System\Activities\XamlIntegration\CompiledExpressionActivityVisitor.cs (3)
387
if (activity.
ImplementationChildren
!= null)
389
for (int i = 0; i < activity.
ImplementationChildren
.Count; i++)
391
VisitCore(activity.
ImplementationChildren
[i], out exit);