2 writes to innerChannel
System.ServiceModel (2)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
542this.innerChannel = this.innerListener.AcceptChannel(timeoutHelper.RemainingTime()); 911this.channelDemuxer.innerChannel = this.channelDemuxer.innerListener.EndAcceptChannel(result);
15 references to innerChannel
System.ServiceModel (15)
System\ServiceModel\Channels\ChannelDemuxer.cs (15)
220get { return this.innerChannel; } 302if (this.innerChannel.State == CommunicationState.Opened) 307null, this.innerChannel, null); 388if (this.innerChannel != null) 390this.innerChannel.Abort(); 416if (this.innerChannel != null) 418this.innerChannel.Close(timeoutHelper.RemainingTime()); 543this.innerChannel.Open(timeoutHelper.RemainingTime()); 665if (this.innerChannel.State != CommunicationState.Opened) 912IAsyncResult openResult = this.channelDemuxer.innerChannel.BeginOpen(this.timeoutHelper.RemainingTime(), acceptChannelCallback, this); 951this.channelDemuxer.innerChannel.EndOpen(result); 988if (channelDemuxer.innerChannel != null) 993IAsyncResult result = channelDemuxer.innerChannel.BeginClose(timeoutHelper.RemainingTime(), sharedCallback, this); 999channelDemuxer.innerChannel.EndClose(result); 1059self.channelDemuxer.innerChannel.EndClose(result);