Skip to content

Azure Queue Storage

Robin Rodricks edited this page Jul 15, 2026 · 4 revisions

In order to use Azure Queue Storage reference FluentStorage.Azure.Queues package first.

Connect to Azure Queue

You can use the AzureQueueStorage factory class to connect to Azure Queue Storage.

IQueue publisher = AzureQueueStorage.FromCredentials();

Connect using Connection Strings

To create with a connection string, first reference the module:

AzureQueueStorage.Use();

Then construct using the following format:

IQueue publisher = QueueFactory.FromConnectionString("azure.queue://account=...;key=...;queue=...");

Clone this wiki locally