32 references to SequenceHelper
System.Workflow.ComponentModel (32)
AuthoringOM\Behaviors\CancellationHandler.cs (5)
39return SequenceHelper.Execute(this, executionContext); 44return SequenceHelper.Cancel(this, executionContext); 49SequenceHelper.OnEvent(this, sender, e); 54SequenceHelper.OnActivityChangeRemove(this, executionContext, removedActivity); 59SequenceHelper.OnWorkflowChangesCompleted(this, executionContext);
AuthoringOM\Behaviors\CompensatableTransactionScopeActivity.cs (5)
56return SequenceHelper.Execute(this, executionContext); 61return SequenceHelper.Cancel(this, executionContext); 66SequenceHelper.OnEvent(this, sender, e); 71SequenceHelper.OnActivityChangeRemove(this, executionContext, removedActivity); 76SequenceHelper.OnWorkflowChangesCompleted(this, executionContext);
AuthoringOM\Behaviors\Compensation.cs (5)
40return SequenceHelper.Execute(this, executionContext); 45return SequenceHelper.Cancel(this, executionContext); 50SequenceHelper.OnEvent(this, sender, e); 55SequenceHelper.OnActivityChangeRemove(this, executionContext, removedActivity); 60SequenceHelper.OnWorkflowChangesCompleted(this, executionContext);
AuthoringOM\Behaviors\ExceptionHandler.cs (5)
82return SequenceHelper.Execute(this, executionContext); 87return SequenceHelper.Cancel(this, executionContext); 92SequenceHelper.OnEvent(this, sender, e); 97SequenceHelper.OnActivityChangeRemove(this, executionContext, removedActivity); 102SequenceHelper.OnWorkflowChangesCompleted(this, executionContext);
AuthoringOM\Behaviors\SynchronizationScope.cs (5)
55return SequenceHelper.Execute(this, executionContext); 60return SequenceHelper.Cancel(this, executionContext); 65SequenceHelper.OnEvent(this, sender, e); 70SequenceHelper.OnActivityChangeRemove(this, executionContext, removedActivity); 75SequenceHelper.OnWorkflowChangesCompleted(this, executionContext);
AuthoringOM\Behaviors\TransactionScope.cs (5)
58return SequenceHelper.Execute(this, executionContext); 63return SequenceHelper.Cancel(this, executionContext); 68SequenceHelper.OnEvent(this, sender, e); 73SequenceHelper.OnActivityChangeRemove(this, executionContext, removedActivity); 78SequenceHelper.OnWorkflowChangesCompleted(this, executionContext);
AuthoringOM\Sequence.cs (2)
22private static DependencyProperty ActiveChildQualifiedNameProperty = DependencyProperty.RegisterAttached("ActiveChildQualifiedName", typeof(String), typeof(SequenceHelper)); 23private static DependencyProperty ActiveChildRemovedProperty = DependencyProperty.RegisterAttached("ActiveChildRemoved", typeof(bool), typeof(SequenceHelper), new PropertyMetadata(DependencyPropertyOptions.NonSerialized));