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