Soenneker.ServiceBus.Transmitter 4.0.3867

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.ServiceBus.Transmitter --version 4.0.3867
                    
NuGet\Install-Package Soenneker.ServiceBus.Transmitter -Version 4.0.3867
                    
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="Soenneker.ServiceBus.Transmitter" Version="4.0.3867" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.ServiceBus.Transmitter" Version="4.0.3867" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.ServiceBus.Transmitter" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.ServiceBus.Transmitter --version 4.0.3867
                    
#r "nuget: Soenneker.ServiceBus.Transmitter, 4.0.3867"
                    
#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.
#:package Soenneker.ServiceBus.Transmitter@4.0.3867
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.ServiceBus.Transmitter&version=4.0.3867
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.ServiceBus.Transmitter&version=4.0.3867
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.ServiceBus.Transmitter

A utility library for sending Service Bus messages Singleton IoC.

Install

dotnet add package Soenneker.ServiceBus.Transmitter

Quick start

using Soenneker.ServiceBus.Transmitter.Registrars;
using Microsoft.Extensions.DependencyInjection;

var services = new ServiceCollection();
var result = services.AddServiceBusTransmitterAsSingleton();

Registers Service Bus Transmitter with a singleton lifetime.

What you get

  • IServiceBusTransmitter — A utility library for sending Service Bus messages Singleton IoC.
  • ServiceBusTransmitterRegistrar — A utility library for sending Service Bus messages.

API at a glance

API What it does Result / important behavior
IServiceBusTransmitter.SendMessage(msgModel, useQueue, cancellationToken) Wraps InternalSendMessage{TMsg} with IBackgroundQueue. A task that completes when the message has been sent.
IServiceBusTransmitter.InternalSendMessage(msg, cancellationToken) Actually sends the message after getting the connection, etc. Not supposed to be accessed directly besides tests. A task that completes when the internal send message operation is complete.
IServiceBusTransmitter.SendMessages(msgModels, useQueue, cancellationToken) Wraps InternalSendMessages{TMsg} with TaskQueue. A task that completes when the messages has been sent.
IServiceBusTransmitter.InternalSendMessages(msgModels, cancellationToken) Actually sends the message after getting the connection, etc. Not supposed to be accessed directly besides tests. A task that completes when the internal send messages operation is complete.
ServiceBusTransmitterRegistrar.AddServiceBusTransmitterAsSingleton(services) Registers Service Bus Transmitter with a singleton lifetime. The same service collection, so additional registrations can be chained.
ServiceBusTransmitterRegistrar.AddServiceBusTransmitterAsScoped(services) Registers Service Bus Transmitter with a scoped lifetime. The same service collection, so additional registrations can be chained.

Practical notes

  • Cancellation stops pending work; it does not undo work that has already completed.
  • Calls that return a cached or singleton value reuse the same instance until the owning service is disposed.
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Soenneker.ServiceBus.Transmitter:

Package Downloads
Soenneker.ServiceBus.Suite

Convenience references and dependency injection registration for the Soenneker Service Bus transmitter stack.

Soenneker.MsTeams.Util

A centralized utility for sending rich, configurable Adaptive Card messages to Microsoft Teams channels via a service bus, with environment-aware filtering and dynamic content generation.

Soenneker.Email.Util

A utility to place emails on Service Bus

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.3916 124 9/10/2026
4.0.3915 85 9/10/2026
4.0.3914 142 9/9/2026
4.0.3913 152 9/9/2026
4.0.3912 46 9/9/2026
4.0.3910 67 9/9/2026
4.0.3909 158 9/8/2026
4.0.3908 107 9/8/2026
4.0.3907 221 9/8/2026
4.0.3906 133 9/8/2026
4.0.3905 166 9/8/2026
4.0.3904 67 9/8/2026
4.0.3903 140 9/8/2026
4.0.3902 191 9/8/2026
4.0.3901 140 9/7/2026
4.0.3900 185 9/7/2026
4.0.3899 172 9/7/2026
4.0.3898 299 9/7/2026
4.0.3897 350 9/5/2026
4.0.3867 124 8/30/2026
Loading failed

Update dependency Soenneker.ServiceBus.Sender to 4.0.2473 (#4771)