Soenneker.ServiceBus.Transmitter
4.0.3858
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.ServiceBus.Transmitter --version 4.0.3858
NuGet\Install-Package Soenneker.ServiceBus.Transmitter -Version 4.0.3858
<PackageReference Include="Soenneker.ServiceBus.Transmitter" Version="4.0.3858" />
<PackageVersion Include="Soenneker.ServiceBus.Transmitter" Version="4.0.3858" />
<PackageReference Include="Soenneker.ServiceBus.Transmitter" />
paket add Soenneker.ServiceBus.Transmitter --version 4.0.3858
#r "nuget: Soenneker.ServiceBus.Transmitter, 4.0.3858"
#:package Soenneker.ServiceBus.Transmitter@4.0.3858
#addin nuget:?package=Soenneker.ServiceBus.Transmitter&version=4.0.3858
#tool nuget:?package=Soenneker.ServiceBus.Transmitter&version=4.0.3858
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 | Versions 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. |
-
net10.0
- Soenneker.ServiceBus.Message (>= 4.0.3064)
- Soenneker.ServiceBus.Sender (>= 4.0.2466)
- Soenneker.Utils.BackgroundQueue (>= 4.0.2455)
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.3944 | 103 | 9/17/2026 |
| 4.0.3943 | 95 | 9/16/2026 |
| 4.0.3942 | 42 | 9/16/2026 |
| 4.0.3941 | 92 | 9/16/2026 |
| 4.0.3939 | 121 | 9/16/2026 |
| 4.0.3938 | 78 | 9/16/2026 |
| 4.0.3937 | 96 | 9/16/2026 |
| 4.0.3935 | 104 | 9/16/2026 |
| 4.0.3934 | 52 | 9/15/2026 |
| 4.0.3932 | 597 | 9/13/2026 |
| 4.0.3931 | 151 | 9/13/2026 |
| 4.0.3930 | 107 | 9/13/2026 |
| 4.0.3929 | 216 | 9/13/2026 |
| 4.0.3928 | 139 | 9/13/2026 |
| 4.0.3927 | 177 | 9/13/2026 |
| 4.0.3926 | 84 | 9/13/2026 |
| 4.0.3925 | 90 | 9/13/2026 |
| 4.0.3924 | 200 | 9/13/2026 |
| 4.0.3923 | 227 | 9/12/2026 |
| 4.0.3858 | 99 | 8/29/2026 |
Update dependency Soenneker.ServiceBus.Sender to 4.0.2466 (#4760)