17 overrides of Value
System.Activities (17)
System\Activities\Expressions\ArrayItemReference.cs (1)
82public override TItem Value
System\Activities\Expressions\FieldReference.cs (1)
92public override TResult Value
System\Activities\Expressions\IndexerReference.cs (1)
145public override TItem Value
System\Activities\Expressions\MultidimensionalArrayItemReference.cs (1)
109public override TItem Value
System\Activities\Expressions\PropertyReference.cs (1)
125public override T Value
System\Activities\Expressions\ValueTypeFieldReference.cs (1)
89public override TResult Value
System\Activities\Expressions\ValueTypeIndexerReference.cs (1)
139public override TItem Value
System\Activities\Expressions\ValueTypePropertyReference.cs (1)
128public override TResult Value
System\Activities\ExpressionUtilities.cs (5)
306public override T Value 400public override T Value 583public override T Value 700public override T Value 796public override T Value
System\Activities\Location.cs (1)
302public override T Value
System\Activities\Runtime\TypedLocationWrapper.cs (1)
38public override T Value
System\Activities\Variable.cs (1)
528public override T Value
System\Activities\XamlIntegration\CompiledLocation.cs (1)
79public override T Value
10 writes to Value
System.Activities (10)
System\Activities\ActivityContext.cs (1)
258typedLocation.Value = value;
System\Activities\Expressions\ValueTypeFieldReference.cs (1)
99this.ownerLocation.Value = (TOperand)copy;
System\Activities\Expressions\ValueTypeIndexerReference.cs (1)
181this.operandLocation.Value = (TOperand)copy;
System\Activities\Expressions\ValueTypePropertyReference.cs (1)
160this.ownerLocation.Value = (TOperand)copy;
System\Activities\InArgument.cs (1)
235location.Value = executor.ExecuteInResolutionContext<T>(activityInstance, this.Expression);
System\Activities\Location.cs (3)
244this.Value = value; 257this.Value = TypeHelper.Convert<T>(value); 317this.innerLocation.Value = value;
System\Activities\Variable.cs (2)
566base.Value = value; 597base.Value = value;
15 references to Value
System.Activities (15)
System\Activities\ActivityContext.cs (1)
227return typedLocation.Value;
System\Activities\Expressions\ValueTypeFieldReference.cs (2)
93return (TResult)this.fieldInfo.GetValue(this.ownerLocation.Value); 97object copy = this.ownerLocation.Value;
System\Activities\Expressions\ValueTypeIndexerReference.cs (3)
147return (TItem)this.getFunc(this.operandLocation.Value, indices); 151return (TItem)this.getMethod.Invoke(this.operandLocation.Value, indices); 170object copy = this.operandLocation.Value;
System\Activities\Expressions\ValueTypePropertyReference.cs (3)
138return (TResult)this.getFunc(this.ownerLocation.Value, new object[0]); 145return (TResult)this.propertyInfo.GetValue(this.ownerLocation.Value, null); 149object copy = this.ownerLocation.Value;
System\Activities\Location.cs (3)
239return this.Value; 252return this.Value; 312return this.innerLocation.Value;
System\Activities\Runtime\FuncCompletionCallbackWrapper.cs (1)
91this.resultValue = typedLocation.Value;
System\Activities\Variable.cs (2)
532return base.Value; 538Handle currentValue = base.Value as Handle;