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