Aspire.Azure.Messaging.WebPubSub 8.1.0

Prefix Reserved
dotnet add package Aspire.Azure.Messaging.WebPubSub --version 8.1.0                
NuGet\Install-Package Aspire.Azure.Messaging.WebPubSub -Version 8.1.0                
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.WebPubSub" Version="8.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspire.Azure.Messaging.WebPubSub --version 8.1.0                
#r "nuget: Aspire.Azure.Messaging.WebPubSub, 8.1.0"                
#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.WebPubSub as a Cake Addin
#addin nuget:?package=Aspire.Azure.Messaging.WebPubSub&version=8.1.0

// Install Aspire.Azure.Messaging.WebPubSub as a Cake Tool
#tool nuget:?package=Aspire.Azure.Messaging.WebPubSub&version=8.1.0                

Aspire.Azure.Messaging.WebPubSub

Registers a WebPubSubServiceClient in the DI container for connecting to Azure Web PubSub.

Getting started

Prerequisites

  • Azure subscription - create one for free
  • An existing Azure Web PubSub service instance, learn more about how to Create a Web PubSub resource. Alternatively, you can use a connection string, which is not recommended in production environments.

Install the package

Install the .NET Aspire Azure Web PubSub library with NuGet:

dotnet add package Aspire.Azure.Messaging.WebPubSub

Usage example

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

builder.AddAzureWebPubSubServiceClient("wps1");

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

private readonly WebPubSubServiceClient _client;

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

See the Azure.Messaging.WebPubSub documentation for examples on using the WebPubSubServiceClient.

Configuration

The .NET Aspire Azure Web PubSub library provides multiple options to configure the Azure Web PubSub connection based on the requirements and conventions of your project. Note that either a Endpoint 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.AddAzureWebPubSubHub():

builder.AddAzureWebPubSubServiceClient("WebPubSubConnectionName", "your_hub_name");

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

Use the service endpoint

The recommended approach is to use the service endpoint, which works with the AzureMessagingWebPubSubSettings.Credential property to establish a connection. If no credential is configured, the DefaultAzureCredential is used.

{
  "ConnectionStrings": {
    "WebPubSubConnectionName": "https://xxx.webpubsub.azure.com"
  }
}
Connection string

Alternatively, a connection string can be used.

{
  "ConnectionStrings": {
    "WebPubSubConnectionName": "Endpoint=https://xxx.webpubsub.azure.com;AccessKey==xxxxxxx"
  }
}

Use configuration providers

The .NET Aspire Azure Web PubSub library supports Microsoft.Extensions.Configuration. It loads the AzureMessagingWebPubSubSettings and WebPubSubServiceClientOptions from configuration by using the Aspire:Azure:Messaging:WebPubSub key. Example appsettings.json that configures some of the options:

{
  "Aspire": {
    "Azure": {
      "Messaging": {
        "WebPubSub": {
          "DisableHealthChecks": true,
          "HubName": "your_hub_name"
        }
      }
    }
  }
}

Use inline delegates

You can also pass the Action<AzureMessagingWebPubSubSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:

    builder.AddAzureWebPubSubServiceClient("wps", settings => settings.DisableHealthChecks = true);

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

    builder.AddAzureWebPubSubServiceClient("wps", configureClientBuilder: clientBuilder => clientBuilder.ConfigureOptions(options => options.Retry.MaxRetries = 5));

AppHost extensions

In your AppHost project, add a Web PubSub connection and consume the connection using the following methods:

var webPubSub = builder.AddAzureWebPubSub("wps");

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

The AddAzureWebPubSubHub method will read connection information from the AppHost's configuration (for example, from "user secrets") under the ConnectionStrings:wps config key. The WithReference method passes that connection information into a connection string named wps in the MyService project. In the Program.cs file of MyService, the connection can be consumed using:

builder.AddAzureWebPubSubServiceClient("wps");

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.1.0 86 7/23/2024