1 write to _user
System.Workflow.Runtime (1)
RTTrackingProfile.cs (1)
162
_user
= new Dictionary<string, List<UserTrackPoint>>(runtimeProfile._user.Count);
11 references to _user
System.Workflow.Runtime (11)
RTTrackingProfile.cs (11)
162
_user = new Dictionary<string, List<UserTrackPoint>>(runtimeProfile.
_user
.Count);
163
foreach (KeyValuePair<string, List<UserTrackPoint>> kvp in runtimeProfile.
_user
)
164
_user
.Add(kvp.Key, runtimeProfile.
_user
[kvp.Key]);
384
_user
.Remove(qId);
400
_user
.Add(kvp.Key, kvp.Value);
532
Debug.Assert(!
_user
.ContainsKey(qualifiedID), "QualifiedName is already in the user cache");
533
if (
_user
.ContainsKey(qualifiedID))
556
if (!
_user
.TryGetValue(qualifiedID, out points))
559
_user
.Add(qualifiedID, points);
638
return
_user
.TryGetValue(activity.QualifiedName, out points);