-
-
Notifications
You must be signed in to change notification settings - Fork 72
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.
You can use the AzureQueueStorage factory class to connect to Azure Queue Storage.
IQueue publisher = AzureQueueStorage.FromCredentials();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=...");