TinyHttpService:微型Http服务器

时间:2024-06-27 18:00:44
【文件属性】:

文件名称:TinyHttpService:微型Http服务器

文件大小:66KB

文件格式:ZIP

更新时间:2024-06-27 18:00:44

C#

TinyHttpService 简单的Http服务,可以根据http请求进行常见的操作。只需在你的程序(这个程序可以是WPF/Winform/Console等等)中引用并使用,你的程序就变成了一个简单的Http服务器了。这样你的程序就可以根据http请求做你想做的事了,比如:在web页面上操纵你的应用程序,进行文件上传下载等等。 使用方法 ###首先注册路由: var routes = RouteTable.Instance; routes.Get("/user", (context) => { var user = new User(); user.UserName = "zhang"; return new ViewResult("/view/razor.cshtml", user); }); routes.Post("/user", (contex


【文件预览】:
TinyHttpService-master
----TinyHttpService()
--------DefaultTinyHttpServiceFactory.cs(654B)
--------Utils()
--------TinyHttpService.csproj(6KB)
--------packages.config(294B)
--------RequestParser()
--------TinyHttpServiceConfig.cs(265B)
--------Properties()
--------Router()
--------HttpData()
--------Core()
--------ActionResults()
----TinyHttpService.Test()
--------Utils()
--------packages.config(142B)
--------RequestParser()
--------Properties()
--------Router()
--------TinyHttpService.Test.csproj(5KB)
----TinyHttpService.Sample()
--------TinyHttpService.Sample.csproj(3KB)
--------view()
--------public()
--------Program.cs(2KB)
--------favicon.ico(25KB)
--------User.cs(236B)
--------Properties()
--------file()
--------App.config(182B)
----README.md(1KB)
----TinyHttpService.sln(3KB)

网友评论