![]() |
MTSC
1.0.5
Build TCP servers out of modules with handlers for communication, exception and logging.
|
Interface for Http modules used by the server http handler. More...
Public Member Functions | |
| bool | HandleRequest (Server.Server server, HttpHandler handler, ClientData client, HttpMessage request, ref HttpMessage response) |
| Handle the received request. More... | |
| void | Tick (Server.Server server, HttpHandler handler) |
| Perform periodic operations. More... | |
Interface for Http modules used by the server http handler.
Definition at line 13 of file IHttpModule.cs.
| bool MTSC.Common.Http.ServerModules.IHttpModule.HandleRequest | ( | Server.Server | server, |
| HttpHandler | handler, | ||
| ClientData | client, | ||
| HttpMessage | request, | ||
| ref HttpMessage | response | ||
| ) |
Handle the received request.
| senderHandler | Handler that handled the request. |
| client | Client data. |
| request | Request message. |
| void MTSC.Common.Http.ServerModules.IHttpModule.Tick | ( | Server.Server | server, |
| HttpHandler | handler | ||
| ) |
Perform periodic operations.
| handler |