IHttpModule
It is used by SimpleWServer.UseModule to install a module.
Signature
An IHttpModule is an interface with the following method:
csharp
/// <summary>
/// Callback to Install Module in server
/// </summary>
/// <param name="server"></param>
void Install(SimpleWServer server);See more examples.