laget.Azure.ServiceBus 1.1.27

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. 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.27
NuGet\Install-Package laget.Azure.ServiceBus -Version 1.1.27
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.27" />
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.27
#r "nuget: laget.Azure.ServiceBus, 1.1.27"
#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.27

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

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 (3)

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

Package Downloads
laget.Auditing The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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

laget.SFI.Sdk The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This is the Software Development Kit (SDK) for the integration between laget.se and sports associations.

laget.Notifications.Sdk The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package is part of laget.se's Notifications SDK. Use it to register push notifications with laget.Azure.ServiceBus...

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.52 152 5/6/2024
2.2.51 136 4/5/2024
2.2.50 285 3/4/2024
2.2.49 289 1/20/2024
2.2.48 376 12/6/2023
2.2.47 168 11/22/2023
2.2.46 116 11/7/2023
2.2.45 131 11/6/2023
2.2.44 234 10/20/2023
2.1.42 261 10/6/2023
1.1.40 228 10/2/2023
1.1.39 190 9/4/2023
1.1.38 204 7/3/2023
1.1.35 271 5/15/2023
1.1.34 195 4/13/2023
1.1.32 239 4/13/2023
1.1.31 403 4/3/2023
1.1.27 232 3/10/2023
1.1.26 585 3/6/2023
1.1.22 719 12/5/2022
1.1.21 610 11/7/2022
1.1.19 1,061 9/5/2022
1.1.17 860 7/15/2022
1.1.16 1,564 6/7/2022
1.1.15 888 5/3/2022
1.1.14 1,956 4/4/2022
1.1.13 557 4/4/2022
1.1.12 574 4/4/2022
1.1.11 606 3/7/2022
1.1.10 427 12/21/2021
1.1.8 2,283 11/28/2021
1.1.6 3,792 8/16/2021
1.1.5 823 6/11/2021
1.1.4 1,068 6/7/2021
1.1.3 2,033 5/27/2021
1.1.1 419 5/21/2021
1.0.18 553 5/3/2021
1.0.17 473 4/6/2021
1.0.16 435 3/10/2021
1.0.15 493 3/5/2021
1.0.14 2,392 2/1/2021
1.0.13 1,012 1/15/2021
1.0.12 613 1/8/2021
1.0.11 583 1/2/2021
1.0.10 573 12/23/2020
1.0.8 507 12/22/2020
1.0.7 1,703 12/16/2020
1.0.6 512 12/9/2020
1.0.5 562 12/9/2020