2 writes to _services
System.Workflow.Runtime (2)
Tracking.cs (2)
1083this._services = (Dictionary<Guid, ServiceProfileContainer>)info.GetValue("services", typeof(Dictionary<Guid, ServiceProfileContainer>)); 1085this._services = new Dictionary<Guid, ServiceProfileContainer>();
15 references to _services
System.Workflow.Runtime (15)
Tracking.cs (15)
947return _services.ContainsKey(HashHelper.HashServiceType(trackingServiceType)); 952_services.Add(HashHelper.HashServiceType(trackingServiceType), new ServiceProfileContainer(profileVersionId)); 963if (_services.TryGetValue(previous, out item)) 965_services.Remove(previous); 967if (!_services.ContainsKey(current)) 969_services.Add(current, item); 978_services.Remove(HashHelper.HashServiceType(trackingServiceType)); 986if (_services.TryGetValue(HashHelper.HashServiceType(trackingServiceType), out service)) 997if (!_services.TryGetValue(HashHelper.HashServiceType(trackingServiceType), out service)) 1006if (!_services.TryGetValue(HashHelper.HashServiceType(trackingServiceType), out service)) 1015if (!_services.TryGetValue(HashHelper.HashServiceType(trackingServiceType), out service)) 1026if (!_services.TryGetValue(HashHelper.HashServiceType(trackingServiceType), out service)) 1078info.AddValue("services", this._services.Count == 0 ? null : this._services); 1084if (this._services == null)