DEV Community

Kevin Jump
Kevin Jump

Posted on

3 1

11/2 - DotnetCore masters

This week most of the talks from the Dutch Umbraco Festival DF21 were uploaded to youtube - if you fancy attending a virtual confrence, in your own time, they are well worth a watch.

https://www.youtube.com/watch?v=AKGjdiquA1I&list=PLh_jm4oU4mFfkLsSXZDEKozkp07djRoFO


My own personal dotnet core journey continues. This week I have been learning about custom middleware and content buffering. Mark Ashley Bell, has a good post on this. I particularly like the example of how to register the custom middleware for only some routes.

app.UseWhen(
    ctx => ctx.Request.Path.StartsWithSegments("/home/withmodelbinding"),
    ab => ab.UseMiddleware<EnableRequestBodyBufferingMiddleware>()
);
Enter fullscreen mode Exit fullscreen mode

At some point i should probably write up how to then use a UmbracoPipelineFilter to do this in an Umbraco package without changing startup.cs - because at the moment the only results are those from me asking about it in forum post


Sometimes you start to answer a question on the forums and think, that should really be a blog post. I really should do that for this one to Owain about how I setup for package dev.


Looking for some unwind TV his week ? Lego Masters Australia is well worth a watch, it a bit like Lego Masters UK but its better, builds are bigger and the challenges are cooler. In the UK Season 2 is currently playing out on All4

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (0)

Image of Datadog

Master Mobile Monitoring for iOS Apps

Monitor your app’s health with real-time insights into crash-free rates, start times, and more. Optimize performance and prevent user churn by addressing critical issues like app hangs, and ANRs. Learn how to keep your iOS app running smoothly across all devices by downloading this eBook.

Get The eBook

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay