9 references to SynchronizationHandlesProperty
System.Workflow.ComponentModel (9)
AuthoringOM\Activity.cs (2)
1379
ICollection<String> handles = (ICollection<String>)GetValue(
SynchronizationHandlesProperty
);
1387
this.SetValue(
SynchronizationHandlesProperty
, new ReadOnlyCollection<string>(new List<string>(handles)));
AuthoringOM\ActivityExecutionContext.cs (4)
450
ICollection<string> synchronizationHandlesOnParent = (ICollection<string>)parent.GetValue(Activity.
SynchronizationHandlesProperty
);
532
ICollection<string> synchronizationHandlesOnParent = (ICollection<string>)parent.GetValue(Activity.
SynchronizationHandlesProperty
);
553
ICollection<string> handleCollection = (ICollection<string>)activity.GetValue(Activity.
SynchronizationHandlesProperty
);
567
ICollection<string> handlesOnChild = (ICollection<string>)e.CurrentActivity.GetValue(Activity.
SynchronizationHandlesProperty
);
AuthoringOM\Behaviors\SynchronizationScope.cs (2)
45
return this.GetValue(
SynchronizationHandlesProperty
) as ICollection<String>;
49
this.SetValue(
SynchronizationHandlesProperty
, value);
AuthoringOM\Compiler\Validation\SynchronizationValidator.cs (1)
17
ICollection<string> synchronizationHandles = activity.GetValue(Activity.
SynchronizationHandlesProperty
) as ICollection<string>;