-
Sponsored by Nick Chapsas—Want to learn how to build elegant REST APIs in .NET? Get 5% off Nick's latest course "From Zero to Hero: REST APIs in .NET"!
-
My new book ASP.NET Core in Action, Third Edition is available now! It supports .NET 7.0, and is available as an eBook or paperback. You even get a free copy of the previous editions of ASP.NET Core in Action!
-
Just because you stopped waiting for it, doesn't mean the Task stopped running
In this post I look at what happens to Tasks that are 'cancelled' using the new .NET 6 WaitAsync() API, and in other Task cancellation scenarios…
-
A deep-dive into the new Task.WaitAsync() API in .NET 6
In this post I look at how the new Task.WaitAsync() API is implemented in .NET 6, looking at the internal types used to implement it…
-
Cancelling await calls in .NET 6 with Task.WaitAsync()
In this post I discuss the new Task.WaitAsync() APIs introduced in .NET 6 and how you can use them to cancel an await call…
-
Please stop lying about .NET Standard 2.0 support!
In this post I have a bit of a rant about Microsoft's NuGet packages lying about supporting .NET Standard 2.0 when they kinda don't…
-
Waiting for your ASP.NET Core app to be ready from an IHostedService in .NET 6
In this post I describe how you can wait for your ASP.NET Core app to be ready to receive requests from inside an IHostedService/BackgroundService in .NET 6…
-
NetEscapades.EnumGenerators: a source generator for enum performance
In this post I describe a source generator I created to improve the performance of enum operations…