6 implementations of IChannelBinder
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
14internal class BufferedReceiveBinder : IChannelBinder
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
16internal class DuplexChannelBinder : IChannelBinder
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
13internal class InputChannelBinder : IChannelBinder
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
13internal class OutputChannelBinder : IChannelBinder
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (1)
13internal class ReplyChannelBinder : IChannelBinder
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\RequestChannelBinder.cs (1)
10internal class RequestChannelBinder : IChannelBinder
41 references to IChannelBinder
dotnet-svcutil-lib (41)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (8)
28private readonly IChannelBinder _binder; 55private ServiceChannel(IChannelBinder binder, MessageVersion messageVersion, IDefaultCommunicationTimeouts timeouts) 77internal ServiceChannel(ServiceChannelFactory factory, IChannelBinder binder) 94internal ServiceChannel(IChannelBinder binder, 206internal IChannelBinder Binder 2332private readonly IChannelBinder _binder; 2342private SessionIdleManager(IChannelBinder binder, TimeSpan idle) 2350internal static SessionIdleManager CreateIfNeeded(IChannelBinder binder, TimeSpan idle)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (8)
311IChannelBinder binder = this.CreateInnerChannelBinder(address, via); 394protected abstract IChannelBinder CreateInnerChannelBinder(EndpointAddress address, Uri via); 488protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 507protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 527protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 548protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 577protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 603protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (2)
19private IChannelBinder _channelBinder; 25public BufferedReceiveBinder(IChannelBinder channelBinder)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (4)
23private readonly IChannelBinder _binder; 54internal ChannelHandler(MessageVersion messageVersion, IChannelBinder binder, ServiceChannel channel) 80internal ChannelHandler(MessageVersion messageVersion, IChannelBinder binder, 119internal IChannelBinder Binder
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorHandlingReceiver.cs (2)
13private IChannelBinder _binder; 15internal ErrorHandlingReceiver(IChannelBinder binder, ChannelDispatcher dispatcher)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\IListenerBinder.cs (2)
14IChannelBinder Accept(TimeSpan timeout); 16IChannelBinder EndAccept(IAsyncResult result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerBinder.cs (12)
67public IChannelBinder Accept(TimeSpan timeout) 81public IChannelBinder EndAccept(IAsyncResult result) 114public IChannelBinder Accept(TimeSpan timeout) 128public IChannelBinder EndAccept(IAsyncResult result) 159public IChannelBinder Accept(TimeSpan timeout) 173public IChannelBinder EndAccept(IAsyncResult result) 204public IChannelBinder Accept(TimeSpan timeout) 218public IChannelBinder EndAccept(IAsyncResult result) 249public IChannelBinder Accept(TimeSpan timeout) 263public IChannelBinder EndAccept(IAsyncResult result) 294public IChannelBinder Accept(TimeSpan timeout) 308public IChannelBinder EndAccept(IAsyncResult result)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (3)
450private IChannelBinder _binder; 452public ListenerChannel(IChannelBinder binder) 457public IChannelBinder Binder