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