12 references to GetSpecificLocation
System.Activities (12)
System\Activities\ActivityInstance.cs (5)
897Fx.Assert(this.Environment.GetSpecificLocation(argument.Id) == null, "This is a newly added argument so the location should be null"); 917Location location = this.environment.GetSpecificLocation(argument.Id); 970Location location = this.environment.GetSpecificLocation(argument.Id); 1079Location variableLocation = this.Environment.GetSpecificLocation(variable.Id); 1103variableLocation = this.environment.GetSpecificLocation(variable.Id);
System\Activities\Runtime\ActivityExecutor.cs (1)
2358Location location = this.rootEnvironment.GetSpecificLocation(argument.BoundArgument.Id);
System\Activities\Runtime\DelegateCompletionCallbackWrapper.cs (1)
49Location parameterLocation = environment.GetSpecificLocation(runtimeArgument.BoundArgument.Id);
System\Activities\Runtime\FuncCompletionCallbackWrapper.cs (1)
86Location location = completedInstance.Environment.GetSpecificLocation(resultId);
System\Activities\Runtime\LocationEnvironment.cs (3)
315Location location = GetSpecificLocation(variable.Id); 377return GetSpecificLocation(id) as Location<T>; 737RegisterLocation(GetSpecificLocation(locationReference.Id), locationReference, activityInstance);
System\Activities\Tracking\ActivityStateRecord.cs (1)
328Location location = currentInstance.Environment.GetSpecificLocation(id);