.NET 的 Web 框架 Manos
openkk
13年前
Manos 是一个易用、易于测试、高性能的 .NET 的 Web 框架。
示例代码:
Route ("/timeout", ctx => { ctx.Response.WriteLine ("Hello"); AddTimeout (TimeSpan.FromSeconds (2), (app, data) => { Console.WriteLine ("writing world."); ctx.Response.WriteLine ("World"); ctx.Response.End (); }); });