GeistHaus
log in · sign up
1 page links to this URL
Announcing Botwin

Whilst keeping my eye on what’s going on in .NET Core v2 I came across some planned changes for ASP.NET Core regarding the routing. I had also read this blog post from Filip about using the planned changes for microservices and a lightbulb went off in my head. I thought to myself I wonder if I could adapt the new extensions to create Nancy-esque routing. Turns out, I could! Sample public class ActorsModule : BotwinModule { public ActorsModule() { this.Get("/", async (req, res, routeData) => { await res.WriteAsync("Hello World!"); }); } }

0 inbound links article en post OSSASP.NETCsharpBotwin