HttpListener Constructor (IPAddress, Int32)

HttpServer.dll

Listen for regular http connections

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

Syntax

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

Parameters

address
Type: System.Net..::.IPAddress
IP Address to accept connections on
port
Type: System..::.Int32
TCP Port to listen on, default HTTP port is 80.

See Also