Aspire.Azure.Messaging.ServiceBus 8.0.0-preview.7.24251.11

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Aspire.Azure.Messaging.ServiceBus.
dotnet add package Aspire.Azure.Messaging.ServiceBus --version 8.0.0-preview.7.24251.11
NuGet\Install-Package Aspire.Azure.Messaging.ServiceBus -Version 8.0.0-preview.7.24251.11
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspire.Azure.Messaging.ServiceBus" Version="8.0.0-preview.7.24251.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspire.Azure.Messaging.ServiceBus --version 8.0.0-preview.7.24251.11
#r "nuget: Aspire.Azure.Messaging.ServiceBus, 8.0.0-preview.7.24251.11"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aspire.Azure.Messaging.ServiceBus as a Cake Addin
#addin nuget:?package=Aspire.Azure.Messaging.ServiceBus&version=8.0.0-preview.7.24251.11&prerelease

// Install Aspire.Azure.Messaging.ServiceBus as a Cake Tool
#tool nuget:?package=Aspire.Azure.Messaging.ServiceBus&version=8.0.0-preview.7.24251.11&prerelease

Aspire.Azure.Messaging.ServiceBus

Registers a ServiceBusClient in the DI container for connecting to Azure Service Bus.

Getting started

Prerequisites

Install the package

Install the .NET Aspire Azure Service Bus library with NuGet:

dotnet add package Aspire.Azure.Messaging.ServiceBus

Usage example

In the Program.cs file of your project, call the AddAzureServiceBusClient extension method to register a ServiceBusClient for use via the dependency injection container. The method takes a connection name parameter.

builder.AddAzureServiceBusClient("sb");

You can then retrieve the ServiceBusClient instance using dependency injection. For example, to retrieve the client from a Web API controller:

private readonly ServiceBusClient _client;

public ProductsController(ServiceBusClient client)
{
    _client = client;
}

See the Azure.Messaging.ServiceBus documentation for examples on using the ServiceBusClient.

Configuration

The .NET Aspire Azure Service Bus library provides multiple options to configure the Azure Service Bus connection based on the requirements and conventions of your project. Note that either a Namespace or a ConnectionString is a required to be supplied.

Use a connection string

When using a connection string from the ConnectionStrings configuration section, you can provide the name of the connection string when calling builder.AddAzureServiceBusClient():

builder.AddAzureServiceBusClient("serviceBusConnectionName");

And then the connection information will be retrieved from the ConnectionStrings configuration section. Two connection formats are supported:

Fully Qualified Namespace

The recommended approach is to use a fully qualified namespace, which works with the AzureMessagingServiceBusSettings.Credential property to establish a connection. If no credential is configured, the DefaultAzureCredential is used.

{
  "ConnectionStrings": {
    "serviceBusConnectionName": "{your_namespace}.servicebus.windows.net"
  }
}
Connection string

Alternatively, a connection string can be used.

{
  "ConnectionStrings": {
    "serviceBusConnectionName": "Endpoint=sb://mynamespace.servicebus.windows.net/;SharedAccessKeyName=accesskeyname;SharedAccessKey=accesskey"
  }
}

Use configuration providers

The .NET Aspire Azure Service Bus library supports Microsoft.Extensions.Configuration. It loads the AzureMessagingServiceBusSettings and ServiceBusClientOptions from configuration by using the Aspire:Azure:Messaging:ServiceBus key. Example appsettings.json that configures some of the options:

{
  "Aspire": {
    "Azure": {
      "Messaging": {
        "ServiceBus": {
          "HealthCheckQueueName": "myQueue",
          "DisableTracing": false,
          "ClientOptions": {
            "Identifier": "CLIENT_ID"
          }
        }
      }
    }
  }
}

Use inline delegates

You can also pass the Action<AzureMessagingServiceBusSettings> configureSettings delegate to set up some or all the options inline, for example to configure the health check queue name from code:

builder.AddAzureServiceBusClient("sb", settings => settings.HealthCheckQueueName = "myQueue");

You can also setup the ServiceBusClientOptions using the optional Action<IAzureClientBuilder<ServiceBusClient, ServiceBusClientOptions>> configureClientBuilder parameter of the AddAzureServiceBusClient method. For example, to set the client ID for this client:

builder.AddAzureServiceBusClient("sb", configureClientBuilder: clientBuilder => clientBuilder.ConfigureOptions(options => options.Identifier = "CLIENT_ID"));

AppHost extensions

In your AppHost project, install the Aspire Azure Service Bus Hosting library with NuGet:

dotnet add package Aspire.Hosting.Azure.ServiceBus

Then, in the Program.cs file of AppHost, add a Service Bus connection and consume the connection using the following methods:

var serviceBus = builder.ExecutionContext.IsPublishMode
    ? builder.AddAzureServiceBus("sb")
    ? builder.AddConnectionString("sb");

var myService = builder.AddProject<Projects.MyService>()
                       .WithReference(serviceBus);

The AddAzureServiceBus method adds an Azure Service Bus Namespace to the builder. Or AddConnectionString can be used to read connection information from the AppHost's configuration (for example, from "user secrets") under the ConnectionStrings:sb config key. The WithReference method passes that connection information into a connection string named sb in the MyService project. In the Program.cs file of MyService, the connection can be consumed using:

builder.AddAzureServiceBusClient("sb");

Additional documentation

Feedback & contributing

https://github.com/dotnet/aspire

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Aspire.Azure.Messaging.ServiceBus:

Package Downloads
Hexalith.Infrastructure.AspireService.Hosting

Hexalith is a set of libraries to build a micro-service architecture.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0-preview.7.24251.11 561 5/7/2024
8.0.0-preview.6.24214.1 387 4/23/2024
8.0.0-preview.5.24201.12 859 4/9/2024
8.0.0-preview.4.24156.9 1,210 3/12/2024
8.0.0-preview.3.24105.21 878 2/13/2024
8.0.0-preview.2.23619.3 1,227 12/20/2023
8.0.0-preview.1.23557.2 630 11/14/2023