8 instantiations of Item
System.ServiceModel.Internals (8)
System\Runtime\InputQueue.cs (8)
163Item item = new Item(); 218Item item = new Item(); 328EnqueueAndDispatch(new Item(exception, dequeuedCallback), canDispatchOnThisThread); 334EnqueueAndDispatch(new Item(item, dequeuedCallback), canDispatchOnThisThread); 340return EnqueueWithoutDispatch(new Item(item, dequeuedCallback)); 346return EnqueueWithoutDispatch(new Item(exception, dequeuedCallback)); 387outstandingReaders[i].Set(new Item(exception, null)); 979this.items[this.head] = new Item();
24 references to Item
System.ServiceModel.Internals (24)
System\Runtime\InputQueue.cs (24)
78Item item = default(Item); 163Item item = new Item(); 218Item item = new Item(); 462reader.Set(default(Item)); 467Item item = itemQueue.DequeueAnyItem(); 474void DisposeItem(Item item) 500outstandingReaders[i].Set(default(Item)); 578void EnqueueAndDispatch(Item item, bool canDispatchOnThisThread) 659bool EnqueueWithoutDispatch(Item item) 738void Set(Item item); 837public void Set(Item item) 919Item[] items; 925this.items = new Item[1]; 943public Item DequeueAnyItem() 952public Item DequeueAvailableItem() 958public void EnqueueAvailableItem(Item item) 963public void EnqueuePendingItem(Item item) 975Item DequeueItemCore() 978Item item = this.items[this.head]; 985void EnqueueItemCore(Item item) 989Item[] newItems = new Item[this.items.Length * 2]; 1020public void Set(Item item)