2 writes to mappableLocations
System.Activities (2)
System\Activities\Runtime\MappableObjectManager.cs (2)
41
set { this.
mappableLocations
= value; }
66
this.
mappableLocations
= new List<MappableLocation>();
14 references to mappableLocations
System.Activities (14)
System\Activities\Runtime\MappableObjectManager.cs (14)
28
if (this.
mappableLocations
!= null)
30
result += this.
mappableLocations
.Count;
40
get { return this.
mappableLocations
; }
47
if (this.
mappableLocations
!= null && this.
mappableLocations
.Count > 0)
49
result = new Dictionary<string, LocationInfo>(this.
mappableLocations
.Count);
50
for (int locationIndex = 0; locationIndex < this.
mappableLocations
.Count; locationIndex++)
52
MappableLocation mappableLocation = this.
mappableLocations
[locationIndex];
64
if (this.
mappableLocations
== null)
69
this.
mappableLocations
.Add(new MappableLocation(locationOwner, activity, activityInstance, location));
76
int mappedLocationsCount = this.
mappableLocations
.Count;
79
if (object.ReferenceEquals(this.
mappableLocations
[i].Location, location))
81
this.
mappableLocations
.RemoveAt(i);
85
Fx.Assert(this.
mappableLocations
.Count == mappedLocationsCount - 1, "can only unregister locations that have been registered");