1 write to channelAcceptor
System.ServiceModel (1)
System\ServiceModel\Channels\DelegatingChannelListener.cs (1)
39set { this.channelAcceptor = value; }
13 references to channelAcceptor
System.ServiceModel (13)
System\ServiceModel\Channels\DelegatingChannelListener.cs (13)
38get { return this.channelAcceptor; } 44return this.channelAcceptor.AcceptChannel(timeout); 49return this.channelAcceptor.BeginAcceptChannel(timeout, callback, state); 54return this.channelAcceptor.EndAcceptChannel(result); 59return this.channelAcceptor.WaitForChannel(timeout); 64return this.channelAcceptor.BeginWaitForChannel(timeout, callback, state); 69return this.channelAcceptor.EndWaitForChannel(result); 75if (this.channelAcceptor != null) 77this.channelAcceptor.Abort(); 83return new ChainedCloseAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, this.channelAcceptor); 95this.channelAcceptor.Close(timeoutHelper.RemainingTime()); 100return new ChainedOpenAsyncResult(timeout, callback, state, base.OnBeginOpen, base.OnEndOpen, this.channelAcceptor); 112this.channelAcceptor.Open(timeoutHelper.RemainingTime());