Go to file
Michael Nolan 937a2e15c6 First version 2022-04-02 16:19:37 -05:00
.vs/Tesses.WebServer/xs First version 2022-04-02 16:15:20 -05:00
Tesses.WebServer First version 2022-04-02 16:15:20 -05:00
Tesses.WebServer.Console First version 2022-04-02 16:15:20 -05:00
.gitignore Initial Commit 2022-04-02 13:59:12 -05:00
LICENSE.md First version 2022-04-02 16:19:37 -05:00
README.md First version 2022-04-02 16:15:20 -05:00
Tesses.WebServer.sln Initial Commit 2022-04-02 13:59:12 -05:00

README.md

Tesses.WebServer

A TcpListener HTTP Server

Currently Supports

  • GET+HEAD+POST Requests
  • Seekable Video Files (Using Range)
  • Can Send Json To Client with helper function (uses Newtonsoft.Json)
  • Cors Header

Classes To Make It Easier

  • Static Website Class (Can pass in other class (instead of 404 when file doesnt exist) can choose other names other than index.html, index.htm, default.html, default.htm)
  • 404 Not Found Class
  • Mount class (So you could use Api)

Comming Soon Hopefully

  • Basic Auth Class

Might Happen But not sure

  • WebDav Class

Note: Range code and POST code is not mine its a modified version of the code from ( dajuric/simple-http)