HttpServer:一个使用C#编写的简易Web服务器

时间:2024-06-20 08:19:00
【文件属性】:

文件名称:HttpServer:一个使用C#编写的简易Web服务器

文件大小:83KB

文件格式:ZIP

更新时间:2024-06-20 08:19:00

C#

HttpServer 一个使用C#编写的简易Web服务器, 目前支持: 静态页面处理 :grinning_face_with_smiling_eyes: GET/POST请求 :grinning_face_with_smiling_eyes: 支持HTTPS协议 :grinning_face_with_smiling_eyes: 支持返回JSON :worried_face: 支持路由方法 :worried_face: 快速开始 HTTP服务器示例 class Program { static void Main(string[] args) { ExampleServer server = new ExampleServer("0.0.0.0",4050); server.Start(); } } GET/POST请求示例 public override void OnPost(HttpRequest request, HttpResponse response) { //获取客户端传递的参数 string


【文件预览】:
HttpServer-master
----sonar-project.properties(490B)
----Dockerfile(2KB)
----.travis.yml(887B)
----.scannerwork()
--------.sonar_lock(0B)
----HTTPServer()
--------HTTPServer.sln(2KB)
--------HTTPServerLib()
--------HTTPClient()
--------Packages.dgml(474B)
--------Packages()
--------HTTPServer()
--------HTTPServerLib.UnitTest()
----README.md(3KB)
----.gitignore(5KB)

网友评论