6 implementations of Channel
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
31public IChannel Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
58public IChannel Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
29public IChannel Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
27public IChannel Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (1)
29public IChannel Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\RequestChannelBinder.cs (1)
24public IChannel Channel
17 references to Channel
dotnet-svcutil-lib (17)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (7)
64_isReplyChannel = _binder.Channel is IReplyChannel; 66IChannel innerChannel = binder.Channel; 72_openBinder = (binder.Channel.State == CommunicationState.Created); 251get { return _binder.Channel; } 407_binder.Channel.Faulted += OnInnerChannelFaulted; 2445if (!_isTimerCancelled && _binder.Channel.State != CommunicationState.Faulted && _binder.Channel.State != CommunicationState.Closed)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
33get { return _channelBinder.Channel; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (5)
136get { return _binder.Channel.State == CommunicationState.Opened; } 173if (_binder.Channel.State == CommunicationState.Created) 502_listener.ChannelDispatcher.ProvideFault(e, _requestInfo.Channel == null ? _binder.Channel.GetProperty<FaultConverter>() : _requestInfo.Channel.GetProperty<FaultConverter>(), ref faultInfo); 772_binder.Channel.Open(); 800_binder.Channel.Abort();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorHandlingReceiver.cs (1)
25_binder.Channel.Close();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
263channelDispatcher.PendingChannels.Remove(rpc.Channel.Binder.Channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (2)
292_channelDispatcher.Channels.Add(channel.Binder.Channel); 324channel.Binder.Channel.Abort();