VBServerLibVBServerLib allows developers to take advantage of VBServer by implementing its server technology into your own .NET apps to host your own web server. DocumentationFirst, download and add the VBServerLib reference to your .NET project.Create the server objectVB.NETdim svrobj as new VBServerLib.Server() C#VBServerLib.Server svrobj=new VBServerLib.Server(); Start the serverVB.NETsvrobj.start(ipaddress,port,maxnumberofconnections,contentpath) C#svrobj.start(ipaddress,port,maxnumberofconnections,contentpath); Stop the serverVB.NETsvrobj.stop() C#svrobj.stop(); |