Beta implementation for a form parser in case of POST HTTP request.

This commit is contained in:
2019-07-29 15:57:34 +03:00
parent f8344a3ab0
commit 37d03d25eb
4 changed files with 133 additions and 1 deletions
+2 -1
View File
@@ -28,7 +28,8 @@ namespace MTSC_TestServer
.AddExceptionHandler(new ExceptionConsoleLogger())
//.AddHandler(new BroadcastHandler())
.AddHandler(new WebsocketHandler().AddWebsocketHandler(new BroadcastModule()))
.AddHandler(new HttpHandler().AddHttpModule(new FileServerModule()))
.AddHandler(new HttpHandler().AddHttpModule(new FileServerModule())
.AddHttpModule(new PostModule()))
.Run();
}