Internal
This is the default HTTP implementation provided by the GenHTTP framework. It relies only on code written in C# and tries to reduce dependencies to third-party libraries and the environment it runs in as much as possible, therefore making it a good choice for embedding a webservice into another application (e.g. WPF or Windows Forms) or hosting a small service as a Docker container.
using GenHTTP.Engine.Internal;
await Host.Create()
.Handler(...)
.RunAsync();