10 writes to UseOldFastPath
System.Activities (10)
Microsoft\CSharp\Activities\CSharpReference.cs (1)
25this.UseOldFastPath = true;
Microsoft\CSharp\Activities\CSharpValue.cs (1)
28this.UseOldFastPath = true;
Microsoft\VisualBasic\Activities\VisualBasicReference.cs (1)
29this.UseOldFastPath = true;
Microsoft\VisualBasic\Activities\VisualBasicValue.cs (1)
29this.UseOldFastPath = true;
System\Activities\Expressions\EnvironmentLocationReference.cs (1)
18this.UseOldFastPath = true;
System\Activities\Expressions\EnvironmentLocationValue.cs (1)
18this.UseOldFastPath = true;
System\Activities\Expressions\LambdaReference.cs (1)
32this.UseOldFastPath = true;
System\Activities\Expressions\LambdaValue.cs (1)
32this.UseOldFastPath = true;
System\Activities\Expressions\Literal.cs (1)
27this.UseOldFastPath = true;
System\Activities\Expressions\LocationReferenceValue.cs (1)
17this.UseOldFastPath = true;
11 references to UseOldFastPath
System.Activities (11)
System\Activities\ActivityInstance.cs (1)
1081if (variable.Default.UseOldFastPath)
System\Activities\CodeActivityPublicEnvironmentAccessor.cs (2)
97Fx.Assert(!useLocationReferenceValue || this.ActivityMetadata.CurrentActivity.UseOldFastPath, "useLocationReferenceValue should only be used for back-compat"); 116Fx.Assert(!useLocationReferenceValue || this.ActivityMetadata.CurrentActivity.UseOldFastPath, "useLocationReferenceValue should only be used for back-compat");
System\Activities\InArgument.cs (1)
233if (this.Expression.UseOldFastPath)
System\Activities\InOutArgument.cs (1)
204if (this.Expression.UseOldFastPath)
System\Activities\OutArgument.cs (1)
232if (this.Expression.UseOldFastPath)
System\Activities\Runtime\ActivityExecutor.cs (3)
886if (!expressionActivity.UseOldFastPath) 902Fx.Assert(expressionActivity.UseOldFastPath, "New fast path should be scheduled via ExecuteSynchronousExpressionWorkItem, which calls the Untyped overload"); 2921Fx.Assert(!activity.UseOldFastPath || parent.SubState == ActivityInstance.Substate.Executing,
System\Activities\Runtime\ResolveNextArgumentWorkItem.cs (1)
80return argument.BoundArgument.Expression.UseOldFastPath;
System\Activities\Variable.cs (1)
430Fx.Assert(this.Default.UseOldFastPath, "Should only be called for OldFastPath");