Mossharbor.AzureWorkArounds.ServiceBus 1.0.2

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

// Install Mossharbor.AzureWorkArounds.ServiceBus as a Cake Tool
#tool nuget:?package=Mossharbor.AzureWorkArounds.ServiceBus&version=1.0.2

Mossharbor.AzureWorkArounds.ServiceBus

The last version of the Azure Service Bus Api's (Microsoft.Azure.ServiceBus) are missing functionality that used to exist in the non-dotnet core libaries (mainly WindowsAzure.ServiceBus).
This missing functionality involves the CRUD operations on Azure Queue's/Topics/Subscriptions and Event Hubs.

This library adds those operations back in a donet standard 2.0 compatible library.

you can see a summary of the issue here

Install the nuget package: Install-Package Mossharbor.AzureWorkArounds.ServiceBus -Version 1.0.1

Example:

string name = "testSubscription";
string topicName = "testTopicSubscription";
NamespaceManager ns = NamespaceManager.CreateFromConnectionString(serviceBusConnectionString);
TopicDescription tdescription = ns.CreateTopic(topicName);
SubscriptionDescription sdescription = ns.CreateSubscription(topicName, "testSubscription");

if (!ns.SubscriptionExists(topicName, name, out sdescription))
	 Assert.Fail("Subscription did not exist");
else
{
	Assert.IsTrue(null != sdescription);
	ns.DeleteSubscription(topicName, name);
	if (ns.SubscriptionExists(topicName, name, out sdescription))
		 Assert.Fail("Subscription was not deleted");

	ns.DeleteTopic(topicName);
	if (ns.TopicExists(name, out tdescription))
		Assert.Fail("Topic was not deleted");
}
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 was computed. 
.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.

This package has no dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Mossharbor.AzureWorkArounds.ServiceBus:

Package Downloads
PipServices3.Azure

Azure components for Pip.Services in .NET

DocWorks.Common.SEDAEvents.AzureServiceBus

This package adds support for azure service bus to SedaEvents.

PipServices4.Azure

Azure components for Pip.Services in .NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.20 259,991 6/17/2018
1.0.19 3,297 6/6/2018
1.0.18 947 6/5/2018
1.0.17 1,078 6/5/2018
1.0.16 1,132 5/31/2018
1.0.15 997 5/30/2018
1.0.14 834 5/23/2018
1.0.13 1,053 5/21/2018
1.0.11 918 5/18/2018
1.0.10 1,000 5/17/2018
1.0.9 910 5/17/2018
1.0.8 922 5/17/2018
1.0.7 847 5/16/2018
1.0.6 10,155 5/11/2018
1.0.5 935 5/10/2018
1.0.4 926 5/10/2018
1.0.3 973 5/9/2018
1.0.2 925 5/8/2018
1.0.1 1,011 5/2/2018
1.0.0 953 5/2/2018

Added support for Event Hub ConsumerGroups and Partitions