1 interface inheriting from IReplyChannel
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\IReplySessionChannel.cs (1)
8public interface IReplySessionChannel : IReplyChannel, ISessionChannel<IInputSession>
10 references to IReplyChannel
System.ServiceModel.Primitives (10)
System\ServiceModel\Channels\ChannelRequirements.cs (1)
214channelType == typeof(IReplyChannel) ||
System\ServiceModel\Channels\ServiceChannel.cs (1)
54IsReplyChannel = Binder.Channel is IReplyChannel;
System\ServiceModel\Dispatcher\ListenerBinder.cs (6)
26IChannelListener<IReplyChannel> reply = listener as IChannelListener<IReplyChannel>; 242private IChannelListener<IReplyChannel> _listener; 244internal ReplyListenerBinder(IChannelListener<IReplyChannel> listener, MessageVersion messageVersion) 259IReplyChannel channel = _listener.AcceptChannel(timeout); 275IReplyChannel channel = _listener.EndAcceptChannel(result);
System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (2)
14private IReplyChannel _channel; 16internal ReplyChannelBinder(IReplyChannel channel, Uri listenUri)