Mossharbor.AzureWorkArounds.ServiceBus
1.0.6
See the version list below for details.
dotnet add package Mossharbor.AzureWorkArounds.ServiceBus --version 1.0.6
NuGet\Install-Package Mossharbor.AzureWorkArounds.ServiceBus -Version 1.0.6
<PackageReference Include="Mossharbor.AzureWorkArounds.ServiceBus" Version="1.0.6" />
paket add Mossharbor.AzureWorkArounds.ServiceBus --version 1.0.6
#r "nuget: Mossharbor.AzureWorkArounds.ServiceBus, 1.0.6"
// Install Mossharbor.AzureWorkArounds.ServiceBus as a Cake Addin #addin nuget:?package=Mossharbor.AzureWorkArounds.ServiceBus&version=1.0.6 // Install Mossharbor.AzureWorkArounds.ServiceBus as a Cake Tool #tool nuget:?package=Mossharbor.AzureWorkArounds.ServiceBus&version=1.0.6
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 discussion of the issue here
Install the nuget package: Install-Package Mossharbor.AzureWorkArounds.ServiceBus -Version 1.0.6
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 | Versions 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. |
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 | 279,326 | 6/17/2018 |
1.0.19 | 3,349 | 6/6/2018 |
1.0.18 | 999 | 6/5/2018 |
1.0.17 | 1,129 | 6/5/2018 |
1.0.16 | 1,181 | 5/31/2018 |
1.0.15 | 1,044 | 5/30/2018 |
1.0.14 | 877 | 5/23/2018 |
1.0.13 | 1,099 | 5/21/2018 |
1.0.11 | 947 | 5/18/2018 |
1.0.10 | 1,036 | 5/17/2018 |
1.0.9 | 962 | 5/17/2018 |
1.0.8 | 960 | 5/17/2018 |
1.0.7 | 891 | 5/16/2018 |
1.0.6 | 10,224 | 5/11/2018 |
1.0.5 | 984 | 5/10/2018 |
1.0.4 | 972 | 5/10/2018 |
1.0.3 | 1,014 | 5/9/2018 |
1.0.2 | 966 | 5/8/2018 |
1.0.1 | 1,048 | 5/2/2018 |
1.0.0 | 994 | 5/2/2018 |
Added support for Creating Subscriptions with Filters and added GetRules