13 references to MessagePump
Microsoft.AspNetCore.Server.HttpSys (13)
ApplicationRequestContextFactory.cs (2)
11private readonly MessagePump _messagePump; 13public ApplicationRequestContextFactory(IHttpApplication<TContext> application, MessagePump messagePump)
MessagePump.cs (5)
44_logger = loggerFactory.CreateLogger<MessagePump>(); 226var pump = (MessagePump)state!; 283private readonly MessagePump _messagePump; 287MessagePump messagePump)
RequestProcessing\RequestContextOfT.cs (3)
14private readonly MessagePump _messagePump; 16public RequestContext(IHttpApplication<TContext> application, MessagePump messagePump, HttpSysListener server, uint? bufferSize, ulong requestId) 25var messagePump = _messagePump;
WebHostBuilderHttpSysExtensions.cs (3)
33services.AddSingleton<MessagePump>(); 34services.AddSingleton<IServer>(services => services.GetRequiredService<MessagePump>()); 37services.AddSingleton<IServerDelegationFeature>(services => services.GetRequiredService<MessagePump>());