System\ServiceModel\Channels\HttpChannelListener.cs (15)
905return this.Acceptor.AcceptChannel(timeout);
911return this.Acceptor.BeginAcceptChannel(timeout, callback, state);
917return this.Acceptor.EndAcceptChannel(result);
923if (this.Acceptor.PendingCount >= this.WebSocketSettings.MaxPendingConnections)
949this.Acceptor.EnqueueAndDispatch((TChannel)(object)channel, dequeuedCallback, true);
967return new ChainedOpenAsyncResult(timeout, callback, state, base.OnBeginOpen, base.OnEndOpen, this.Acceptor);
974this.Acceptor.Open(timeoutHelper.RemainingTime());
985this.Acceptor.Close(timeoutHelper.RemainingTime());
1008communicationObjects = new ICommunicationObject[] { this.Acceptor };
1012communicationObjects = new ICommunicationObject[] { this.Acceptor, communicationObject };
1065this.Acceptor.Abort();
1077return Acceptor.WaitForChannel(timeout);
1082return Acceptor.BeginWaitForChannel(timeout, callback, state);
1087return Acceptor.EndWaitForChannel(result);
1304IAsyncResult result = context.BeginProcessInboundRequest(listener.Acceptor as ReplyChannelAcceptor,