C# MiniWebSvr服务器(WebServer)

时间:2020-01-09 04:38:08
【文件属性】:

文件名称:C# MiniWebSvr服务器(WebServer)

文件大小:77KB

文件格式:RAR

更新时间:2020-01-09 04:38:08

WEB

namespace MiniWebSvr { class Program { static void Main(string[] args) { StartWebSvr();//启动Web服务器 } public static void StartWebSvr() { webServer websvr = new webServer(); //设置Web服务器IP地址 IPAddress ipAddress = IPAddress.Any; //IPAddress ipAddress = IPAddress.Parse("127.0.0.1"); //设置Web站点虚拟目录 string contentPath = @"C:\"; //设置Web服务器工作端口 int port = 12360; //设置Web服务器最大连接数 int maxNOfCon = 100; if (websvr.start(ipAddress, port, maxNOfCon, contentPath)) { System.Console.WriteLine("WebSvr启动成功!\r\n\r\n" + ipAddress + ":" + port + "\r\n\r\n虚拟站点路径\"" + contentPath + "\"\r\n"); } else System.Console.WriteLine("WebSvr启动失败`冲突`占用?\r\n\r\n" + ipAddress + ":" + port + "\r\n\r\n虚拟站点路径\"" + contentPath + "\"\r\n"); Console.ReadKey(); } } }


【文件预览】:
MiniWebSvr服务器
----MiniWebSvr()
--------bin()
--------WebServer.cs(9KB)
--------Program.cs(1KB)
--------MiniWebSvr.csproj(3KB)
--------obj()
--------App.config(187B)
--------Properties()
----MiniWebSvr.sln(999B)
----MiniWebSvr.v12.suo(43KB)

网友评论