Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
An instance of class HttpServer represents a web service that handles HTTP requests at a particular port, or uses a relay server to make the service accessible even without a public Internet address:
public class HttpServer
{
public int Port { get; set; }
public string RelayHost { get; set; }
public string RelayDomain { get; set; }
public string RelaySecretKey { get; set; }
public RequestRouting RequestRouting { get; set; }
public void Open();
public void Run();
}