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