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