1 interface inheriting from IReplyChannel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IReplySessionChannel.cs (1)
7
public interface IReplySessionChannel :
IReplyChannel
, ISessionChannel<IInputSession>
10 references to IReplyChannel
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelRequirements.cs (1)
213
channelType == typeof(
IReplyChannel
) ||
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
64
_isReplyChannel = _binder.Channel is
IReplyChannel
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerBinder.cs (6)
22
IChannelListener<
IReplyChannel
> reply = listener as IChannelListener<
IReplyChannel
>;
230
private IChannelListener<
IReplyChannel
> _listener;
233
internal ReplyListenerBinder(IChannelListener<
IReplyChannel
> listener, MessageVersion messageVersion)
251
IReplyChannel
channel = _listener.AcceptChannel(timeout);
265
IReplyChannel
channel = _listener.EndAcceptChannel(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (2)
15
private
IReplyChannel
_channel;
18
internal ReplyChannelBinder(
IReplyChannel
channel, Uri listenUri)