1 write to fifoList
System.ServiceModel.Internals (1)
System\Runtime\DuplicateDetector.cs (1)
22this.fifoList = new LinkedList<T>();
6 references to fifoList
System.ServiceModel.Internals (6)
System\Runtime\DuplicateDetector.cs (6)
45Fx.Assert(this.items.Count == this.fifoList.Count, "The items and fifoList must be synchronized."); 49LinkedListNode<T> node = this.fifoList.Last; 51this.fifoList.Remove(node); 54this.items.Add(value, this.fifoList.AddFirst(value)); 68this.fifoList.Remove(node); 80this.fifoList.Clear();