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); 163foreach (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); 532Debug.Assert(!_user.ContainsKey(qualifiedID), "QualifiedName is already in the user cache"); 533if (_user.ContainsKey(qualifiedID)) 556if (!_user.TryGetValue(qualifiedID, out points)) 559_user.Add(qualifiedID, points); 638return _user.TryGetValue(activity.QualifiedName, out points);