6 implementations of Channel
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
31
public IChannel
Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
58
public IChannel
Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
29
public IChannel
Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
27
public IChannel
Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (1)
29
public IChannel
Channel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\RequestChannelBinder.cs (1)
24
public 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;
66
IChannel innerChannel = binder.
Channel
;
72
_openBinder = (binder.
Channel
.State == CommunicationState.Created);
251
get { return _binder.
Channel
; }
407
_binder.
Channel
.Faulted += OnInnerChannelFaulted;
2445
if (!_isTimerCancelled && _binder.
Channel
.State != CommunicationState.Faulted && _binder.
Channel
.State != CommunicationState.Closed)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
33
get { return _channelBinder.
Channel
; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (5)
136
get { return _binder.
Channel
.State == CommunicationState.Opened; }
173
if (_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)
263
channelDispatcher.PendingChannels.Remove(rpc.Channel.Binder.
Channel
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (2)
292
_channelDispatcher.Channels.Add(channel.Binder.
Channel
);
324
channel.Binder.
Channel
.Abort();