11 references to ExecutionType
System.Workflow.Activities (11)
Task.cs (11)
39public static readonly DependencyProperty ExecutionTypeProperty = DependencyProperty.Register("ExecutionType", typeof(ExecutionType), typeof(ReplicatorActivity), new PropertyMetadata(ExecutionType.Sequence)); 81public ExecutionType ExecutionType 85return (ExecutionType)base.GetValue(ReplicatorActivity.ExecutionTypeProperty); 89if (value != ExecutionType.Sequence && value != ExecutionType.Parallel) 168if (this.ExecutionType == ExecutionType.Sequence) 612System.Diagnostics.Debug.Assert(this.ExecutionType == ExecutionType.Parallel); 627case ExecutionType.Sequence: 641case ExecutionType.Parallel: 727bool bShouldExecute = (this.ExecutionType == ExecutionType.Parallel);