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