Code Snippets Working With Streams In C#

Working With Streams In C#

In this code snippet, we will learn about streams in C#. Streams provide a generic view of a sequence of bytes. The Stream class is an abstract class that defines all the necessary things for any inheriting stream to implement such as Read(), Write(), Seek() and Flush() methods.

Azure Functions Bindings And Triggers

Azure Functions Bindings And Triggers

In this post, we’ll talk about bindings and triggers in Azure Functions. In my other post “Getting Started With C# Azure Functions” where I show how to create a basic function I added an Http Trigger when creating the project. Here I’ll show you how to add additional triggers and bindings to your function.