.NET 的 Web 框架 Manos

fmms 12年前
     <p>Manos 是一个易用、易于测试、高性能的 .NET 的 Web 框架。</p>    <p>示例代码:</p>    <p></p>    <pre class="brush:c#; toolbar: true; auto-links: false;">Route ("/timeout", ctx => {     ctx.Response.WriteLine ("Hello");     AddTimeout (TimeSpan.FromSeconds (2), (app, data) => {         Console.WriteLine ("writing world.");         ctx.Response.WriteLine ("World");         ctx.Response.End ();     }); });</pre>    <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1325777266171" target="_blank">http://www.open-open.com/lib/view/home/1325777266171</a></p>    <p></p>