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