1 write to Listener
Microsoft.AspNetCore.Server.HttpSys (1)
MessagePump.cs (1)
43Listener = new HttpSysListener(_options, memoryPoolFactory, loggerFactory);
13 references to Listener
Microsoft.AspNetCore.Server.HttpSys (13)
ApplicationRequestContextFactory.cs (1)
21return new RequestContext<TContext>(_application, _messagePump, _messagePump.Listener, bufferSize, requestId);
MessagePump.cs (12)
85Listener.Options.UrlPrefixes.Clear(); 103else if (Listener.RequestQueue.Created) 107Listener.Options.UrlPrefixes.Add(Constants.DefaultServerAddress); 118Listener.Start(); 145Listener.Options.UrlPrefixes.Add(value); 192var acceptContext = new AsyncAcceptContext(Listener, RequestContextFactory, _logger); 238Listener.RequestQueue.StopProcessingRequests(); 253Listener.Dispose(); 258var rule = new DelegationRule(Listener.UrlGroup, queueName, uri, _logger); 259Listener.UrlGroup.SetDelegationProperty(rule.Queue); 307requestContext = await _messagePump.Listener.AcceptAsync(_asyncAcceptContext); 309if (!_messagePump.Listener.ValidateRequest(requestContext))