1 write to innerChannelListener
System.ServiceModel (1)
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
683
this.
innerChannelListener
= (IChannelListener<IDuplexSessionChannel>)this.InnerChannelListener;
7 references to innerChannelListener
System.ServiceModel (7)
System\ServiceModel\Channels\OneWayChannelListener.cs (7)
677
&& (this.
innerChannelListener
.State == CommunicationState.Opened);
684
this.inputChannelAcceptor.TransferInnerChannelListener(this.
innerChannelListener
); // acceptor now owns the lifetime
698
if (this.ownsInnerListener && this.
innerChannelListener
!= null) // Open didn't complete
700
this.
innerChannelListener
.Abort();
734
result = this.
innerChannelListener
.BeginAcceptChannel(TimeSpan.MaxValue, onAcceptInnerChannel, this);
805
channel =
innerChannelListener
.EndAcceptChannel(result);
863
bool canDispatchOnThisThread = (
innerChannelListener
.State != CommunicationState.Opened);