1 write to channelQueue
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpChannelListener.cs (1)
367this.channelQueue = new InputQueue<TChannel>();
10 references to channelQueue
System.ServiceModel.Channels (10)
System\ServiceModel\Channels\UdpChannelListener.cs (10)
268return this.channelQueue.Dequeue(timeout); 277return this.channelQueue.BeginDequeue(timeout, callback, state); 298return this.channelQueue.BeginWaitForItem(timeout, callback, state); 334if (this.channelQueue.EndDequeue(result, out channel)) 356return this.channelQueue.EndWaitForItem(result); 389return this.channelQueue.WaitForItem(timeout); 422if (this.channelQueue != null) 424this.channelQueue.Close(); 479this.channelQueue.EnqueueAndDispatch(channel, null, false); 503this.channelQueue.EnqueueAndDispatch(UdpUtility.WrapAsyncException(ex), null, false);