![]() |
VOOZH | about |
dotnet add package Azure.Storage.Queues --version 12.27.0
NuGet\Install-Package Azure.Storage.Queues -Version 12.27.0
<PackageReference Include="Azure.Storage.Queues" Version="12.27.0" />
<PackageVersion Include="Azure.Storage.Queues" Version="12.27.0" />Directory.Packages.props
<PackageReference Include="Azure.Storage.Queues" />Project file
paket add Azure.Storage.Queues --version 12.27.0
#r "nuget: Azure.Storage.Queues, 12.27.0"
#:package Azure.Storage.Queues@12.27.0
#addin nuget:?package=Azure.Storage.Queues&version=12.27.0Install as a Cake Addin
#tool nuget:?package=Azure.Storage.Queues&version=12.27.0Install as a Cake Tool
Server Version: 2021-02-12, 2020-12-06, 2020-10-02, 2020-08-04, 2020-06-12, 2020-04-08, 2020-02-10, 2019-12-12, 2019-07-07, and 2019-02-02
Azure Queue storage is a service for storing large numbers of messages that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS. A single queue message can be up to 64 KB in size, and a queue can contain millions of messages, up to the total capacity limit of a storage account.
Source code | Package (NuGet) | API reference documentation | REST API documentation | Product documentation
Install the Azure Storage Queues client library for .NET with NuGet:
dotnet add package Azure.Storage.Queues
You need an Azure subscription and a Storage Account to use this package.
To create a new Storage Account, you can use the Azure Portal, Azure PowerShell, or the Azure CLI. Here's an example using the Azure CLI:
az storage account create --name MyStorageAccount --resource-group MyResourceGroup --location westus --sku Standard_LRS
In order to interact with the Azure Queue Storage service, you'll need to create an instance of the QueueClient class. The Azure Identity library makes it easy to add Azure Active Directory support for authenticating Azure SDK clients with their corresponding Azure services.
// Create a QueueClient that will authenticate through Active Directory
Uri queueUri = new Uri("https://MYSTORAGEACCOUNT.queue.core.windows.net/QUEUENAME");
QueueClient queue = new QueueClient(queueUri, new DefaultAzureCredential());
Learn more about enabling Azure Active Directory for authentication with Azure Storage in our documentation and our samples.
Common uses of Queue storage include:
We guarantee that all client instance methods are thread-safe and independent of each other (guideline). This ensures that the recommendation of reusing client instances is always safe, even across threads.
Client options | Accessing the response | Long-running operations | Handling failures | Diagnostics | Mocking | Client lifetime
// We'll need a connection string to your Azure Storage account.
// You can obtain your connection string from the Azure Portal
// (click Access Keys under Settings in the Portal Storage account
// blade) or using the Azure CLI with:
//
// az storage account show-connection-string --name <account_name> --resource-group <resource_group>
//
// You would normally provide the connection string to your
// application using an environment variable.
string connectionString = "<connection_string>";
// Name of the queue we'll send messages to
string queueName = "sample-queue";
// Get a reference to a queue and then create it
QueueClient queue = new QueueClient(connectionString, queueName);
queue.Create();
// Send a message to our queue
queue.SendMessage("Hello, Azure!");
// We'll need a connection string to your Azure Storage account.
string connectionString = "<connection_string>";
// Name of an existing queue we'll operate on
string queueName = "sample-queue";
// Get a reference to a queue and then fill it with messages
QueueClient queue = new QueueClient(connectionString, queueName);
queue.SendMessage("first");
queue.SendMessage("second");
queue.SendMessage("third");
// Get the next messages from the queue
foreach (QueueMessage message in queue.ReceiveMessages(maxMessages: 10).Value)
{
// "Process" the message
Console.WriteLine($"Message: {message.Body}");
// Let the service know we're finished with the message and
// it can be safely deleted.
queue.DeleteMessage(message.MessageId, message.PopReceipt);
}
We fully support both synchronous and asynchronous APIs.
// We'll need a connection string to your Azure Storage account.
string connectionString = "<connection_string>";
// Name of the queue we'll send messages to
string queueName = "sample-queue";
// Get a reference to a queue and then create it
QueueClient queue = new QueueClient(connectionString, queueName);
await queue.CreateAsync();
// Send a message to our queue
await queue.SendMessageAsync("Hello, Azure!");
This version of library does not encode message by default. V11 and prior versions as well as Azure Functions use base64-encoded messages by default. Therefore it's recommended to use this feature for interop scenarios.
QueueClientOptions queueClientOptions = new QueueClientOptions()
{
MessageEncoding = QueueMessageEncoding.Base64
};
QueueClient queueClient = new QueueClient(connectionString, queueName, queueClientOptions);
All Azure Storage Queue service operations will throw a
RequestFailedException on failure with
helpful ErrorCodes. Many of these errors are recoverable.
If multiple failures occur, an AggregateException will be thrown,
containing each failure instance.
// We'll need a connection string to your Azure Storage account.
string connectionString = "<connection_string>";
// Name of an existing queue we'll operate on
string queueName = "sample-queue";
try
{
// Try to create a queue that already exists
QueueClient queue = new QueueClient(connectionString, queueName);
queue.Create();
}
catch (RequestFailedException ex)
when (ex.ErrorCode == QueueErrorCode.QueueAlreadyExists)
{
// Ignore any errors if the queue already exists
}
Get started with our Queue samples:
See the Storage CONTRIBUTING.md for details on building, testing, and contributing to this library.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit cla.microsoft.com.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact with any additional questions or comments.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on Azure.Storage.Queues:
| Package | Downloads |
|---|---|
|
Microsoft.Azure.DurableTask.AzureStorage
Azure Storage provider extension for the Durable Task Framework. |
|
|
Microsoft.Azure.WebJobs.Extensions.Storage.Queues
This extension adds bindings for Storage |
|
|
Microsoft.Azure.WebJobs.Extensions.Storage.Blobs
This extension adds bindings for Storage |
|
|
AspNetCore.HealthChecks.AzureStorage
HealthChecks.AzureStorage is the health check package for Blobs, Tables and Queues. |
|
|
Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues
Azure Queue Storage extensions for .NET isolated functions |
Showing the top 20 popular GitHub repositories that depend on Azure.Storage.Queues:
| Repository | Stars |
|---|---|
|
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
|
|
|
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
|
dotnet/orleans
Cloud Native application framework for .NET
|
|
|
microsoft/aspire
Aspire is the tool for code-first, extensible, observable dev and deploy.
|
|
|
danielgerlag/workflow-core
Lightweight workflow engine for .NET Standard
|
|
|
dotnet/tye
Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with minimal configuration.
|
|
|
Azure/azure-powershell
Microsoft Azure PowerShell
|
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
|
testcontainers/testcontainers-dotnet
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
|
|
|
ravendb/ravendb
ACID Document Database
|
|
|
microsoft/onefuzz
A self-hosted Fuzzing-As-A-Service platform
|
|
|
microsoft/dotnet-podcasts
.NET reference application shown at .NET Conf featuring ASP.NET Core, Blazor, .NET MAUI, Microservices, Orleans, Playwright, and more!
|
|
|
microsoft/kernel-memory
Research project. A Memory solution for users, teams, and applications.
|
|
|
Azure/durabletask
Durable Task Framework allows users to write long running persistent workflows in C# using the async/await capabilities.
|
|
|
wiremock/WireMock.Net
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on WireMock Java, but extended and different functionality. Full documentation can be found at https://wiremock.org/dotnet/.
|
|
|
NuGet/NuGetGallery
NuGet Gallery is a package repository that powers https://www.nuget.org. Use this repo for reporting NuGet.org issues.
|
|
|
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
|
|
|
Azure/azure-functions-core-tools
Command line tools for Azure Functions
|
|
|
drasi-project/drasi-platform
The Data Change Processing platform
|
|
|
Azure/azure-mcp
The Azure MCP Server, bringing the power of Azure to your agents.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 12.27.0 | 108,631 | 6/4/2026 |
| 12.27.0-beta.1 | 2,102 | 3/24/2026 |
| 12.26.0 | 518,578 | 5/13/2026 |
| 12.26.0-beta.1 | 4,982 | 1/20/2026 |
| 12.25.0 | 3,723,423 | 1/8/2026 |
| 12.25.0-beta.1 | 6,513 | 11/17/2025 |
| 12.24.0 | 7,152,108 | 10/13/2025 |
| 12.24.0-beta.1 | 26,290 | 6/9/2025 |
| 12.23.0 | 5,946,218 | 7/15/2025 |
| 12.23.0-beta.1 | 10,242 | 5/6/2025 |
| 12.22.0 | 10,116,862 | 3/11/2025 |
| 12.22.0-beta.1 | 3,938 | 2/11/2025 |
| 12.21.0 | 13,199,948 | 11/12/2024 |
| 12.21.0-beta.2 | 9,459 | 10/10/2024 |
| 12.21.0-beta.1 | 564 | 10/8/2024 |
| 12.20.1 | 3,188,838 | 10/11/2024 |
| 12.20.0 | 2,675,945 | 9/19/2024 |
| 12.20.0-beta.1 | 10,178 | 8/7/2024 |
| 12.19.1 | 5,635,560 | 7/25/2024 |
| 12.19.0 | 6,172,813 | 7/16/2024 |