laget.Azure.ServiceBus 1.1.8

Prefix Reserved
Additional Details

Please note that this version is deprecated since Microsoft has deprecated Microsoft.Azure.ServiceBus as of November 2020.

There is a newer version of this package available.
See the version list below for details.
dotnet add package laget.Azure.ServiceBus --version 1.1.8                
NuGet\Install-Package laget.Azure.ServiceBus -Version 1.1.8                
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="laget.Azure.ServiceBus" Version="1.1.8" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add laget.Azure.ServiceBus --version 1.1.8                
#r "nuget: laget.Azure.ServiceBus, 1.1.8"                
#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 laget.Azure.ServiceBus as a Cake Addin
#addin nuget:?package=laget.Azure.ServiceBus&version=1.1.8

// Install laget.Azure.ServiceBus as a Cake Tool
#tool nuget:?package=laget.Azure.ServiceBus&version=1.1.8                

laget.Azure.ServiceBus

A generic implementation of Microsoft.Azure.ServiceBus, the next generation Azure Service Bus .NET Standard client library that focuses on queues & topics. For more information about Service Bus...

Nuget Nuget

Usage

public class SomeClass : IHostedService
{
    readonly TopicReceiver _receiver;

    public SomeClass(IConfiguration configuration)
    {
        _receiver = new TopicReceiver(configuration.GetValue<string>("ServiceBus:Url")
                .Replace("{name}", configuration.GetValue<string>("ServiceBus:QueueService:Name"))
                .Replace("{key}", configuration.GetValue<string>("ServiceBus:QueueService:QueueKey")),
            new TopicOptions
            {
                TopicName = "queue",
                SubscriptionName = "queue-service",
                ReceiveMode = ReceiveMode.PeekLock
            });
    }


    public async Task StartAsync(CancellationToken ct)
    {
        await Task.Run(() =>
        {
            _receiver.Register((message, _) =>
            {
                var queue = message.Deserialize<QueueMessage>();

                _handler.Handle(queue);

                return Task.CompletedTask;
            }, ExceptionHandler);
        }, ct);
    }

    public Task StopAsync(CancellationToken cancellationToken)
    {
        return Task.CompletedTask;
    }

    Task ExceptionHandler(ExceptionReceivedEventArgs ex)
    {
        // Log here

        return Task.CompletedTask;
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on laget.Azure.ServiceBus:

Package Downloads
laget.Auditing

A simple framework to audit entities in .NET and .NET Core...

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.54 207 9/3/2024
2.2.53 148 6/3/2024
2.2.52 167 5/6/2024
2.2.51 153 4/5/2024
2.2.50 326 3/4/2024
2.2.49 319 1/20/2024
2.2.48 396 12/6/2023
2.2.47 175 11/22/2023
2.2.46 123 11/7/2023
2.2.45 155 11/6/2023
2.2.44 240 10/20/2023
2.1.42 267 10/6/2023
1.1.40 237 10/2/2023 1.1.40 is deprecated.
1.1.39 196 9/4/2023 1.1.39 is deprecated.
1.1.38 213 7/3/2023 1.1.38 is deprecated.
1.1.35 276 5/15/2023 1.1.35 is deprecated.
1.1.34 199 4/13/2023 1.1.34 is deprecated.
1.1.32 243 4/13/2023 1.1.32 is deprecated.
1.1.31 410 4/3/2023 1.1.31 is deprecated.
1.1.27 236 3/10/2023 1.1.27 is deprecated.
1.1.26 590 3/6/2023 1.1.26 is deprecated.
1.1.22 725 12/5/2022 1.1.22 is deprecated.
1.1.21 615 11/7/2022 1.1.21 is deprecated.
1.1.19 1,066 9/5/2022 1.1.19 is deprecated.
1.1.17 869 7/15/2022 1.1.17 is deprecated.
1.1.16 1,571 6/7/2022 1.1.16 is deprecated.
1.1.15 894 5/3/2022 1.1.15 is deprecated.
1.1.14 1,961 4/4/2022 1.1.14 is deprecated.
1.1.13 562 4/4/2022 1.1.13 is deprecated.
1.1.12 578 4/4/2022 1.1.12 is deprecated.
1.1.11 616 3/7/2022 1.1.11 is deprecated.
1.1.10 435 12/21/2021 1.1.10 is deprecated.
1.1.8 2,290 11/28/2021 1.1.8 is deprecated.
1.1.6 3,803 8/16/2021 1.1.6 is deprecated.
1.1.5 834 6/11/2021 1.1.5 is deprecated.
1.1.4 1,079 6/7/2021 1.1.4 is deprecated.
1.1.3 2,043 5/27/2021 1.1.3 is deprecated.
1.1.1 430 5/21/2021 1.1.1 is deprecated.
1.0.18 564 5/3/2021 1.0.18 is deprecated.
1.0.17 483 4/6/2021 1.0.17 is deprecated.
1.0.16 444 3/10/2021 1.0.16 is deprecated.
1.0.15 501 3/5/2021 1.0.15 is deprecated.
1.0.14 2,403 2/1/2021 1.0.14 is deprecated.
1.0.13 1,023 1/15/2021 1.0.13 is deprecated.
1.0.12 623 1/8/2021 1.0.12 is deprecated.
1.0.11 591 1/2/2021 1.0.11 is deprecated.
1.0.10 583 12/23/2020 1.0.10 is deprecated.
1.0.8 518 12/22/2020 1.0.8 is deprecated.
1.0.7 1,713 12/16/2020 1.0.7 is deprecated.
1.0.6 523 12/9/2020 1.0.6 is deprecated.
1.0.5 571 12/9/2020 1.0.5 is deprecated.