ASP.NET Core HttpSys Web Server is a web server that uses the Windows Hypertext Transfer Protocol Stack.
Documentation for ASP.NET Core HttpSys can be found in the ASP.NET Core HTTP.sys Docs.
This folder contains all relevant code for the HttpSys Web Server implementation.
- src/: Contains all production code for the HttpSys Web Server.
- src/NativeInterop/: Contains the native interop layer between managed and native code.
- src/RequestProcessing/: Contains request and response processing code.
- samples/: Contains samples showing how to use HTTP.sys.
HTTP.sys can only be used on Windows.
To build this specific project from source, follow the instructions on building the project.
Or for the less detailed explanation, run the following command inside this directory.
> ./build.cmd
To run the tests for this project, you can run the tests on the command line in this directory.
Or for the less detailed explanation, run the following command inside this directory.
> ./build.cmd -t
You can also run project specific tests by running dotnet test
in the tests
directory next to the src
directory of the project.
For more information, see the ASP.NET Core README.