Soenneker.ServiceBus.Transmitter
4.0.3867
Prefix Reserved
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
<PackageReference Include="Soenneker.ServiceBus.Transmitter" Version="4.0.3867" />
<PackageVersion Include="Soenneker.ServiceBus.Transmitter" Version="4.0.3867" />
<PackageReference Include="Soenneker.ServiceBus.Transmitter" />
paket add Soenneker.ServiceBus.Transmitter --version 4.0.3867
#r "nuget: Soenneker.ServiceBus.Transmitter, 4.0.3867"
#:package Soenneker.ServiceBus.Transmitter@4.0.3867
#addin nuget:?package=Soenneker.ServiceBus.Transmitter&version=4.0.3867
#tool nuget:?package=Soenneker.ServiceBus.Transmitter&version=4.0.3867
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.3075)
- Soenneker.ServiceBus.Sender (>= 4.0.2473)
- Soenneker.Utils.BackgroundQueue (>= 4.0.2469)
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 |
Update dependency Soenneker.ServiceBus.Sender to 4.0.2473 (#4771)