1 instantiation of LocationInfo
System.Activities (1)
System\Activities\Runtime\MappableObjectManager.cs (1)
53result.Add(mappableLocation.MappingKeyName, new LocationInfo(mappableLocation.Name, mappableLocation.OwnerDisplayName, mappableLocation.Location.Value));
12 references to LocationInfo
System.Activities (11)
System\Activities\Hosting\WorkflowInstance.cs (6)
26static readonly IDictionary<string, LocationInfo> EmptyMappedVariablesDictionary = new ReadOnlyDictionaryInternal<string, LocationInfo>(new Dictionary<string, LocationInfo>(0)); 927public IDictionary<string, LocationInfo> GetMappedVariables() 937IDictionary<string, LocationInfo> mappedLocations = this.instance.executor.GatherMappableVariables(); 940mappedLocations = new ReadOnlyDictionaryInternal<string, LocationInfo>(mappedLocations);
System\Activities\Runtime\ActivityExecutor.cs (1)
1006internal IDictionary<string, LocationInfo> GatherMappableVariables()
System\Activities\Runtime\MappableObjectManager.cs (3)
44public IDictionary<string, LocationInfo> GatherMappableVariables() 46Dictionary<string, LocationInfo> result = null; 49result = new Dictionary<string, LocationInfo>(this.mappableLocations.Count);
System\Activities\WorkflowApplication.cs (1)
5845foreach (KeyValuePair<string, LocationInfo> mappedVariable in instance.Controller.GetMappedVariables())
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\WorkflowServiceInstance.cs (1)
1526foreach (KeyValuePair<string, LocationInfo> mappedVariable in Controller.GetMappedVariables())