Closed chuanboz closed 5 years ago
see https://github.com/aspnet/KestrelHttpServer/issues/2498 for Kestrel.
similar issue exists for UseHttpSys, and it's even harder as MessagePump class is marked as internal.
' public static IServiceCollection UseHttpSys(this IServiceCollection services) { services.AddSingleton<IServer, MessagePump>(); services.AddAuthenticationCore(); return services; } '
Design around this has changed. We don't need this anymore.
thanks @muratg , do you have a link to the changed design around this? just trying to understand the latest design better.
See https://github.com/aspnet/Hosting/pull/1580
see https://github.com/aspnet/KestrelHttpServer/issues/2498 for Kestrel.
similar issue exists for UseHttpSys, and it's even harder as MessagePump class is marked as internal.
' public static IServiceCollection UseHttpSys(this IServiceCollection services) { services.AddSingleton<IServer, MessagePump>(); services.AddAuthenticationCore(); return services; } '