Mossharbor.AzureWorkArounds.ServiceBus
1.0.11
See the version list below for details.
dotnet add package Mossharbor.AzureWorkArounds.ServiceBus --version 1.0.11
NuGet\Install-Package Mossharbor.AzureWorkArounds.ServiceBus -Version 1.0.11
<PackageReference Include="Mossharbor.AzureWorkArounds.ServiceBus" Version="1.0.11" />
paket add Mossharbor.AzureWorkArounds.ServiceBus --version 1.0.11
#r "nuget: Mossharbor.AzureWorkArounds.ServiceBus, 1.0.11"
// Install Mossharbor.AzureWorkArounds.ServiceBus as a Cake Addin #addin nuget:?package=Mossharbor.AzureWorkArounds.ServiceBus&version=1.0.11 // Install Mossharbor.AzureWorkArounds.ServiceBus as a Cake Tool #tool nuget:?package=Mossharbor.AzureWorkArounds.ServiceBus&version=1.0.11
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
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 | net45 is compatible. net451 was computed. net452 was computed. net46 is compatible. 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,109 | 6/17/2018 |
1.0.19 | 3,348 | 6/6/2018 |
1.0.18 | 998 | 6/5/2018 |
1.0.17 | 1,128 | 6/5/2018 |
1.0.16 | 1,180 | 5/31/2018 |
1.0.15 | 1,043 | 5/30/2018 |
1.0.14 | 876 | 5/23/2018 |
1.0.13 | 1,098 | 5/21/2018 |
1.0.11 | 946 | 5/18/2018 |
1.0.10 | 1,035 | 5/17/2018 |
1.0.9 | 961 | 5/17/2018 |
1.0.8 | 959 | 5/17/2018 |
1.0.7 | 890 | 5/16/2018 |
1.0.6 | 10,223 | 5/11/2018 |
1.0.5 | 983 | 5/10/2018 |
1.0.4 | 971 | 5/10/2018 |
1.0.3 | 1,013 | 5/9/2018 |
1.0.2 | 965 | 5/8/2018 |
1.0.1 | 1,047 | 5/2/2018 |
1.0.0 | 993 | 5/2/2018 |
Added default exists functions that match original azure service dll.