C# Class ServiceStack.WebHost.Endpoints.AppHostHttpListenerBase

Inherit from this class if you want to host your web services inside a Console Application, Windows Service, etc. Usage of HttpListener allows you to host webservices on the same port (:80) as IIS however it requires admin user privillages.
Inheritance: ServiceStack.WebHost.Endpoints.Support.HttpListenerBase
Datei anzeigen Open project: firstsee/ServiceStack Class Usage Examples

Protected Methods

Method Description
AppHostHttpListenerBase ( ) : System
AppHostHttpListenerBase ( string serviceName ) : System
ProcessRequest ( HttpListenerContext context ) : void

Method Details

AppHostHttpListenerBase() protected method

protected AppHostHttpListenerBase ( ) : System
return System

AppHostHttpListenerBase() protected method

protected AppHostHttpListenerBase ( string serviceName ) : System
serviceName string
return System

ProcessRequest() protected method

protected ProcessRequest ( HttpListenerContext context ) : void
context System.Net.HttpListenerContext
return void