Visual Studio

Debug Azure Functions webhook callbacks with Dev Tunnels

Using Dev Tunnels to test your Azure Functions webhook callbacks is a breeze. If your systems contain any third-party integrations with services like SendGrid or Stripe, then you will likely want to receive webhook callbacks so you can be informed about what’s happening with your requests. The Azure Functions HTTP trigger is absolutely perfect for […]

Debug Azure Functions webhook callbacks with Dev Tunnels Read More »

, , , ,

Error sending email via SendGrid from Azure Functions

If you’re seeing an error sending email via SendGrid from Azure Functions v4 Isolated model saying “System.Private.CoreLib: Exception while executing function: Functions.SendEmail. Microsoft.Azure.WebJobs.Extensions.SendGrid: A ‘To’ address must be specified for the message.” then you have a JSON serialization problem! The standard JSON in the newer Azure functions projects is System.Text.Json, which is serialising the returned

Error sending email via SendGrid from Azure Functions Read More »

, , , ,

Using Redis Caching in your ASP.NET Core web app

Join the mailing list to stay up to date with published articles Video Summary Welcome back! In our previous videos, we covered the installation of Ubuntu on Windows 11 and explored how to install Redis Server on that Ubuntu instance. Today, we’ll delve into a quick Blazor application that demonstrates how to read and write

Using Redis Caching in your ASP.NET Core web app Read More »

, , ,

Azure Functions not showing all executions under Monitoring

I recently deployed a very simple Azure Functions 2.0 project from Visual Studio 2019 that contained a single timer triggered function. The function had a daily timer trigger and I noticed that there were gaps in the executions in the monitoring tab in the Azure portal.

Azure Functions not showing all executions under Monitoring Read More »

, , , ,

Lower case URLs in ASP.NET Core

Every time I start a new ASP.NET project, I forget the function required to ensure that all links generated out of ASP.NET are lowercase. So this post is as much a reminder for me, than information for anyone else. Personally think all lowercase URLs look better rather than the usual mismatch of cases that a

Lower case URLs in ASP.NET Core Read More »

, , , , ,
Scroll to Top