3 types derived from InputQueueChannel
System.ServiceModel (3)
System\ServiceModel\Channels\DuplexChannel.cs (1)
11abstract class DuplexChannel : InputQueueChannel<Message>, IDuplexChannel
System\ServiceModel\Channels\InputChannel.cs (1)
11class InputChannel : InputQueueChannel<Message>, IInputChannel
System\ServiceModel\Channels\ReplyChannel.cs (1)
11class ReplyChannel : InputQueueChannel<RequestContext>, IReplyChannel
10 references to InputQueueChannel
System.ServiceModel (10)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
1520where TQueuedChannel : InputQueueChannel<TQueuedItem>
System\ServiceModel\Channels\DeliveryStrategy.cs (5)
14InputQueueChannel<ItemType> channel; 18public DeliveryStrategy(InputQueueChannel<ItemType> channel, int quota) 29protected InputQueueChannel<ItemType> Channel 80InputQueueChannel<ItemType> channel, 179public UnorderedDeliveryStrategy(InputQueueChannel<ItemType> channel, int quota)
System\ServiceModel\Channels\PeerMessageDispatcher.cs (3)
14where TChannel : InputQueueChannel<Message> 19InputQueueChannel<Message> inputQueueChannel; 26public PeerMessageQueueAdapter(InputQueueChannel<Message> inputQueueChannel)
System\ServiceModel\Channels\SingletonChannelAcceptor.cs (1)
13where TChannel : /*ChannelInterfaceType,*/ InputQueueChannel<QueueItemType>