A complete HTTP server, you need to add a module to it to be able to handle incoming requests.
Namespace:
HttpServer
Assembly:
HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public class HttpServer |
| Visual Basic (Declaration) |
|---|
Public Class HttpServer |
| Visual C++ |
|---|
public ref class HttpServer |
Examples
CopyC#
HttpServer server = new HttpServer();
server.Add(new WebSiteModule("www.gauffin.com", "Gauffin Telecom AB"));
server.Add(new WebSiteModule("www.vapadi.se", "Remote PBX"));
server.Start(IPAddress.Any, 80);
server.Start(IPAddress.Any, 443, myCertificate);
Inheritance Hierarchy
See Also