2 types derived from TypedChannelDemuxer
System.ServiceModel (2)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
188abstract class DatagramChannelDemuxer<TInnerChannel, TInnerItem> : TypedChannelDemuxer, IChannelDemuxer 1624abstract class SessionChannelDemuxer<TInnerChannel, TInnerItem> : TypedChannelDemuxer, IChannelDemuxer
13 references to TypedChannelDemuxer
System.ServiceModel (13)
System\ServiceModel\Channels\ChannelDemuxer.cs (13)
23TypedChannelDemuxer inputDemuxer; 24TypedChannelDemuxer replyDemuxer; 25Dictionary<Type, TypedChannelDemuxer> typeDemuxers; 33this.typeDemuxers = new Dictionary<Type, TypedChannelDemuxer>(); 72TypedChannelDemuxer CreateTypedDemuxer(Type channelType, BindingContext context) 75return (TypedChannelDemuxer)(object)new DuplexChannelDemuxer(context); 77return (TypedChannelDemuxer)(object)new InputSessionChannelDemuxer(context, this.peekTimeout, this.maxPendingSessions); 79return (TypedChannelDemuxer)(object)new ReplySessionChannelDemuxer(context, this.peekTimeout, this.maxPendingSessions); 81return (TypedChannelDemuxer)(object)new DuplexSessionChannelDemuxer(context, this.peekTimeout, this.maxPendingSessions); 86TypedChannelDemuxer GetTypedDemuxer(Type channelType, BindingContext context) 88TypedChannelDemuxer typeDemuxer = null; 124return (TypedChannelDemuxer)typeDemuxer; 3230TypedChannelDemuxer.AbortMessage(message);