1 write to acceptor
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
69this.acceptor = new ErrorHandlingAcceptor(listenerBinder, channelDispatcher);
7 references to acceptor
System.ServiceModel (7)
System\ServiceModel\Dispatcher\ListenerHandler.cs (7)
193this.acceptor.WaitForChannel(); 223IAsyncResult result = this.acceptor.BeginWaitForChannel(ListenerHandler.waitCallback, this); 230this.acceptor.EndWaitForChannel(result); 248listenerHandler.acceptor.EndWaitForChannel(result); 288IAsyncResult result = this.acceptor.BeginTryAccept(TimeSpan.MaxValue, ListenerHandler.acceptCallback, this); 308if (!this.acceptor.TryAccept(TransactionBehavior.NormalizeTimeout(acceptTimeout), out binder)) 359bool valid = this.acceptor.EndTryAccept(result, out binder);