VBServerLib

VBServerLib allows developers to take advantage of VBServer by implementing its server technology into your own .NET apps to host your own web server.

Documentation

First, download and add the VBServerLib reference to your .NET project.

Download

Create the server object

VB.NET
dim svrobj as new VBServerLib.Server()
C#
VBServerLib.Server svrobj=new VBServerLib.Server();

Start the server

VB.NET
svrobj.start(ipaddress,port,maxnumberofconnections,contentpath)
C#
svrobj.start(ipaddress,port,maxnumberofconnections,contentpath);

Stop the server

VB.NET
svrobj.stop()
C#
svrobj.stop();