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