7 instantiations of ActivityExecutorDelegateInfo
System.Workflow.ComponentModel (7)
AuthoringOM\Activity.cs (6)
436activityExecutorDelegate = new ActivityExecutorDelegateInfo<T>(handler, this.ContextActivity); 458activityExecutorDelegate = new ActivityExecutorDelegateInfo<T>(eventListener, this.ContextActivity); 726handlers.Add(new ActivityExecutorDelegateInfo<ActivityExecutionStatusChangedEventArgs>(true, delegateValue, this.ContextActivity ?? this.RootActivity)); 735handlers.Remove(new ActivityExecutorDelegateInfo<ActivityExecutionStatusChangedEventArgs>(true, delegateValue, this.ContextActivity)); 776handlers.Add(new ActivityExecutorDelegateInfo<ActivityExecutionStatusChangedEventArgs>(true, activityStatusChangeListener, this.ContextActivity)); 800handlers.Remove(new ActivityExecutorDelegateInfo<ActivityExecutionStatusChangedEventArgs>(true, activityStatusChangeListener, this.ContextActivity));
AuthoringOM\ActivityExecutionContext.cs (1)
406this.Activity.SetValue(LockAcquiredCallbackProperty, new ActivityExecutorDelegateInfo<EventArgs>(true, locksAcquiredCallback, this.Activity.ContextActivity));
8 references to ActivityExecutorDelegateInfo
System.Workflow.ComponentModel (8)
AuthoringOM\Activity.cs (3)
434ActivityExecutorDelegateInfo<T> activityExecutorDelegate = null; 456ActivityExecutorDelegateInfo<T> activityExecutorDelegate = null; 1493foreach (ActivityExecutorDelegateInfo<ActivityExecutionStatusChangedEventArgs> delegateInfo in eventListeners)
AuthoringOM\ActivityExecutionContext.cs (3)
47internal static readonly DependencyProperty LockAcquiredCallbackProperty = DependencyProperty.RegisterAttached("LockAcquiredCallback", typeof(ActivityExecutorDelegateInfo<EventArgs>), typeof(ActivityExecutionContext)); 544ActivityExecutorDelegateInfo<EventArgs> waitingActivityCallback = (ActivityExecutorDelegateInfo<EventArgs>)waitingActivity.GetValue(LockAcquiredCallbackProperty);
AuthoringOM\ActivityExecutorDelegateInfo.cs (2)
239ActivityExecutorDelegateInfo<T> otherObject = obj as ActivityExecutorDelegateInfo<T>;