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