11 writes to Expression
System.Activities (11)
System\Activities\Expressions\ExpressionServices.cs (1)
1384Expression = argument,
System\Activities\InOutArgument.cs (9)
52this.Expression = new VariableReference<T> { Variable = variable }; 61this.Expression = new VariableReference<T> { Variable = variable }; 70this.Expression = new LambdaReference<T>(expression); 77this.Expression = expression; 103this.Expression = null; 111this.Expression = typedActivity; 117this.Expression = new ActivityWithResultWrapper<Location<T>>(value); 138Expression = new VariableReference<T> { Variable = variable } 151Expression = expression
System\Activities\XamlIntegration\InOutArgumentConverter.cs (1)
36Expression = this.expressionHelper.ConvertFromString(text.Trim(), context)
4 references to Expression
System.Activities (4)
System\Activities\InOutArgument.cs (4)
97return this.Expression; 202Fx.Assert(this.Expression != null, "This should only be called for non-empty bindings."); 204if (this.Expression.UseOldFastPath) 206Location<T> argumentValue = executor.ExecuteInResolutionContext<Location<T>>(targetActivityInstance, this.Expression);