Working With Azure Storage Account Queues In C#
In this code snippet, we will learn how to queue, check and dequeue messages from Azure Queues using C#.
In this code snippet, we will learn how to queue, check and dequeue messages from Azure Queues using C#.
In this code snippet, we will learn how to read, write and delete files in Azure Blobs(binary large object) using C#. Additionally, I’ll show you how to get the URL for a file and how to generate a SAS(shared access signature) token for it which can be used to download the file.
In this code snippet, we will learn how to read, write and delete files to Azure File Shares using C#. Additionally, I’ll show you how to get the URL for a file and how to generate a SAS(shared access signature) token for it which can be used to download the file.
In this code snippet, we will learn how to read and write to Azure Tables using C#. Azure Tables are great for large amounts of nonstructured(NoSQl) schema-less data. The data is stored as key-value pairs.
In this post, I’ll show you how to create and use a C# class library and a private NuGet package for it, including the CI/CD pipeline in Azure DevOps for publishing new versions. Finally, I will also show you how to use the NuGet package from the private feed we will create in another project/Azure CI/CD pipeline.
In this post, I’ll show you how to upload and programmatically trigger a file download for the user in a Blazor Web Assembly application.
In this post, I’ll show you how to set up a CI/CD(continuous integration and continuous delivery/deployment) pipeline in Azure DevOps for Azure Functions running on Azure cloud.
In this post, I’ll show you how to prevent your Azure Functions from going to sleep thus preventing a cold start and improving the response time of the first call. This can be especially important if you have multiple function chained because you now have multiple cold starts in a row.
In this post, we’ll look at Polly which is a .NET library used for resilience and transient-fault-handling. It provides you with already implemented software design patterns/mechanisms/concepts such as Retry, Circuit Breaker, Hedging, Timeout, Rate Limiter, Fallback, …You can use this to make your software more reliable.
In this post, I’ll show you how to get started with C# Azure Functions. To quote Microsoft: “Azure Functions is a serverless solution that allows you to write less code, maintain less infrastructure, and save on costs. Instead of worrying about deploying and maintaining servers, the cloud infrastructure provides all the up-to-date resources needed to keep your applications running. You focus on the code that matters most to you, in the most productive language for you, and Azure Functions handles the rest.”