Azure Queue Storage - robinrodricks/FluentStorage GitHub Wiki
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=...");