Azure Functions Routing

With azure functions we can customise the end point that our Azure function will respond to. By default the HTTP trigger will use the name of the function as the URL. So if we want to customise that we have…

Azure Functions HTTP Triggers

Azure Functions HTTP triggers give us the ability to extend our applications in many ways. We can use them as webhooks and just make a call or we we can get responses. With Azure Functions added flexibility we can extend…

Azure Functions Triggers

Azure Functions come with a number of triggers, from HTTP, Timers, service bus, blob and many more. In this post we go over the different types of triggers available out of the box for Azure Functions. Last week I covered…