3 instantiations of ExecutionPropertyManager
System.Activities (3)
System\Activities\ExecutionProperties.cs (2)
101this.properties = new ExecutionPropertyManager(this.scope); 106this.properties = new ExecutionPropertyManager(this.scope, this.properties);
System\Activities\Runtime\ActivityExecutor.cs (1)
2723this.rootPropertyManager = new ExecutionPropertyManager(null, rootProperties);
23 references to ExecutionPropertyManager
System.Activities (23)
System\Activities\ActivityInstance.cs (3)
53ExecutionPropertyManager propertyManager; 380internal ExecutionPropertyManager PropertyManager 431internal ExecutionPropertyManager SerializedPropertyManager
System\Activities\ExecutionProperties.cs (2)
22ExecutionPropertyManager properties; 25internal ExecutionProperties(ActivityContext currentContext, ActivityInstance scope, ExecutionPropertyManager properties)
System\Activities\RegistrationContext.cs (2)
14ExecutionPropertyManager properties; 17internal RegistrationContext(ExecutionPropertyManager properties, IdSpace currentIdSpace)
System\Activities\Runtime\ActivityExecutor.cs (8)
106ExecutionPropertyManager rootPropertyManager; 809internal ExecutionPropertyManager RootPropertyManager 819internal ExecutionPropertyManager SerializedPropertyManager 1405foreach (ExecutionPropertyManager.ExecutionProperty executionProperty in this.rootPropertyManager.Properties.Values) 2311foreach (ExecutionPropertyManager.ExecutionProperty executionProperty in this.rootPropertyManager.Properties.Values) 2713Dictionary<string, ExecutionPropertyManager.ExecutionProperty> rootProperties = new Dictionary<string, ExecutionPropertyManager.ExecutionProperty>(hostProperties.Count); 2719rootProperties.Add(handle.ExecutionPropertyName, new ExecutionPropertyManager.ExecutionProperty(handle.ExecutionPropertyName, handle, null));
System\Activities\Runtime\ExecutionPropertyManager.cs (8)
31ExecutionPropertyManager rootPropertyManager; 57public ExecutionPropertyManager(ActivityInstance owningInstance, ExecutionPropertyManager parentPropertyManager) 135ExecutionPropertyManager currentManager = this; 171ExecutionPropertyManager currentManager = this; 184ExecutionPropertyManager currentManager = this; 207static ExecutionPropertyManager GetParent(ExecutionPropertyManager currentManager) 279ExecutionPropertyManager childManager = child.PropertyManager;