Bringing AuthorizeAttribute to .NET Azure Functions v2
19 Mar 2019Azure Functions is a great technology, and even greater when we talk about the .NET support. It allows developer to focus on creating solutions to problems they have been assigned to solve, and not worrying about the infrastructure.
Update available for V3+ In-process and now also for V4 Isolated
A big change for Azure Functions V2 is that runs on top of ASP.NET Core 2 hosting model. Now, lets not get confused; Azure Functions is not ASP.NET Core WebAPI because we are not talking about just HTTP endpoints. Through Azure Functions we are able to trigger actions from different sources and this is what makes it a powerful tool. One of my favorites - Durable Functions extension, we can execute asynchronous workflows without having to be concerned where we were going to hold state like in the days of WF.