27 writes to Value
System.Activities (27)
System\Activities\ActivityContext.cs (1)
268
location.
Value
= value;
System\Activities\Debugger\DebugInfo.cs (16)
324
location.
Value
= RemoveQuotes(value);
328
location.
Value
= Convert.ToBoolean(value, CultureInfo.InvariantCulture);
332
location.
Value
= Convert.ToSByte(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
340
location.
Value
= ch;
345
location.
Value
= Convert.ToInt16(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
349
location.
Value
= Convert.ToInt32(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
353
location.
Value
= Convert.ToInt64(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
357
location.
Value
= Convert.ToByte(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
361
location.
Value
= Convert.ToUInt16(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
365
location.
Value
= Convert.ToUInt32(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
369
location.
Value
= Convert.ToUInt64(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
375
location.
Value
= Convert.ToSingle(value, CultureInfo.InvariantCulture);
386
location.
Value
= Convert.ToDouble(value, CultureInfo.InvariantCulture);
407
location.
Value
= Convert.ToDecimal(value, CultureInfo.InvariantCulture);
412
location.
Value
= Convert.ToDateTime(value, CultureInfo.CurrentCulture);
416
location.
Value
= Enum.Parse(t, value, true);
System\Activities\ExpressionUtilities.cs (2)
424
this.parent.
Value
= this.owner;
843
this.parent.
Value
= this.owner;
System\Activities\Location.cs (1)
165
this.innerLocation.
Value
= value;
System\Activities\Runtime\ActivityExecutor.cs (2)
882
resultLocation.
Value
= expressionActivity.InternalExecuteInResolutionContextUntyped(this.cachedResolutionContext);
2820
newLocation.
Value
= inputParameters[delegateParameterName];
System\Activities\Runtime\LocationEnvironment.cs (1)
331
location.
Value
= null;
System\Activities\Runtime\TypedLocationWrapper.cs (1)
46
this.innerLocation.
Value
= value;
System\Activities\RuntimeArgument.cs (1)
344
location.
Value
= argumentValueOverride;
System\Activities\WorkflowDataContext.cs (1)
277
location.
Value
= value;
System\Activities\XamlIntegration\CompiledDataContext.cs (1)
52
this.locations[index].
Value
= value;
17 references to Value
System.Activities (17)
System\Activities\ActivityContext.cs (1)
233
return TypeHelper.Convert<T>(location.
Value
);
System\Activities\ActivityInstance.cs (2)
1241
if (location.
Value
== null)
1247
argumentValue = "'" + location.
Value
.ToString() + "'";
System\Activities\Debugger\DebugInfo.cs (1)
549
return this.Location.
Value
;
System\Activities\Hosting\SymbolResolver.cs (1)
351
return this.location.
Value
;
System\Activities\Location.cs (1)
160
return this.innerLocation.
Value
;
System\Activities\Runtime\ActivityExecutor.cs (1)
2363
this.workflowOutputs.Add(argument.Name, location.
Value
);
System\Activities\Runtime\DelegateCompletionCallbackWrapper.cs (1)
58
this.results.Add(runtimeArgument.Name, parameterLocation.
Value
);
System\Activities\Runtime\FuncCompletionCallbackWrapper.cs (1)
95
this.resultValue = TypeHelper.Convert<T>(location.
Value
);
System\Activities\Runtime\LocationEnvironment.cs (3)
319
Handle handle = (Handle)location.
Value
;
721
if (location.
Value
== null)
727
location = ((Location)location.
Value
).CreateReference(location.BufferGetsOnCollapse);
System\Activities\Runtime\MappableObjectManager.cs (1)
53
result.Add(mappableLocation.MappingKeyName, new LocationInfo(mappableLocation.Name, mappableLocation.OwnerDisplayName, mappableLocation.Location.
Value
));
System\Activities\Runtime\TypedLocationWrapper.cs (1)
42
return (T)this.innerLocation.
Value
;
System\Activities\Tracking\ActivityStateRecord.cs (1)
337
trackedData[dataName] = location.
Value
;
System\Activities\WorkflowDataContext.cs (1)
251
return this.reference.GetLocation(activityContext).
Value
;
System\Activities\XamlIntegration\CompiledDataContext.cs (1)
47
return this.locations[index].
Value
;