A collection of classes to aid in development with Azure Storage Queues and Blobs. This package does not replace the need for the Azure Storage SDK, but augment it be providing some wrappers around existing methods.
I tried to document the common use cased of the library. If you want to see how to use an individual method, check out the tests.
If you are in the need to use Azure Table Storage, check out JosephGuadagno.AzureHelpers.Cosmos.
The Blob Storage components come in two classes, containers, and blobs.
Just as in the Azure Storage SDK, the blobs are inside a container. The JosephGuadagno.AzureHelpers.Storage.Containers class contains the methods for interacting with Azure Containers.
Provides methods to interact with Blobs in Azure storage.
The Queue Storage helpers come in two classes, the Queues, and the Queue.
Queues contain methods around working with the queues in Azure Storage, creating, deleting, listing, etc.
Queue contains methods around interacting with an individual queue, like adding messages, peeking messages, etc.
If you would like to, you can find the instructions on running the solution locally here.