1 write to items
System.ServiceModel.Internals (1)
System\Runtime\DuplicateDetector.cs (1)
21
this.
items
= new Dictionary<T, LinkedListNode<T>>();
8 references to items
System.ServiceModel.Internals (8)
System\Runtime\DuplicateDetector.cs (8)
33
if (!this.
items
.ContainsKey(value))
45
Fx.Assert(this.
items
.Count == this.fifoList.Count, "The items and fifoList must be synchronized.");
47
if (this.
items
.Count == this.capacity)
50
this.
items
.Remove(node.Value);
54
this.
items
.Add(value, this.fifoList.AddFirst(value));
65
if (this.
items
.TryGetValue(value, out node))
67
this.
items
.Remove(value);
81
this.
items
.Clear();