Start Method (IPAddress, Int32)

HttpServer.dll

Start the webserver using regular HTTP.

Namespace:  HttpServer
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public void Start(
	IPAddress address,
	int port
)
Visual Basic (Declaration)
Public Sub Start ( _
	address As IPAddress, _
	port As Integer _
)
Visual C++
public:
void Start(
	IPAddress^ address, 
	int port
)

Parameters

address
Type: System.Net..::.IPAddress
IP Address to listen on, use IpAddress.Any to accept connections on all ipaddresses/network cards.
port
Type: System..::.Int32
Port to listen on. 80 can be a good idea =)

See Also