Start Method (IPAddress, Int32, X509Certificate)

HttpServer.dll

Accept secure connections.

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,
	X509Certificate certificate
)
Visual Basic (Declaration)
Public Sub Start ( _
	address As IPAddress, _
	port As Integer, _
	certificate As X509Certificate _
)
Visual C++
public:
void Start(
	IPAddress^ address, 
	int port, 
	X509Certificate^ certificate
)

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 =)
certificate
Type: System.Security.Cryptography.X509Certificates..::.X509Certificate
Certificate to use

See Also