4 instantiations of InputQueue
System.ServiceModel.Primitives (4)
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
394return new InputQueue<T>(asyncCallbackGenerator)
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
24_inputQueue = new InputQueue<RequestContextWrapper>();
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1064_pendingMessages = new InputQueue<Message>(); 1540_backgroundCloseData = new InputQueue<object>();
15 references to InputQueue
System.ServiceModel.Primitives (15)
Internals\System\Runtime\InputQueue.cs (7)
671((InputQueue<T>)state).Dispatch(); 896private InputQueue<T> _inputQueue; 900public AsyncQueueReader(InputQueue<T> inputQueue, TimeSpan timeout, AsyncCallback callback, object state) 1082private InputQueue<T> _inputQueue; 1086public WaitQueueReader(InputQueue<T> inputQueue) 1147private InputQueue<T> _inputQueue; 1149public TaskQueueReader(InputQueue<T> inputQueue)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (2)
384private InputQueue<Message> _inputMessages; 402private InputQueue<Message> GetInputMessages()
System\ServiceModel\Channels\InputQueueChannel.cs (1)
13InputQueue<TDisposable> _inputQueue;
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
387public static InputQueue<T> CreateInputQueue<T>() where T : class
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
18private InputQueue<RequestContextWrapper> _inputQueue;
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
1057private InputQueue<Message> _pendingMessages; 1529private InputQueue<object> _backgroundCloseData;
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1534private InputQueue<Message> _queue;