Soenneker.ServiceBus.Transmitter 4.0.3858

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.3858
                    
NuGet\Install-Package Soenneker.ServiceBus.Transmitter -Version 4.0.3858
                    
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.3858" />
                    
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.3858" />
                    
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.3858
                    
#r "nuget: Soenneker.ServiceBus.Transmitter, 4.0.3858"
                    
#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.3858
                    
#: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.3858
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.ServiceBus.Transmitter&version=4.0.3858
                    
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.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
Loading failed

Update dependency Soenneker.ServiceBus.Sender to 4.0.2466 (#4760)