6

I am trying to create a Topic in Microsoft.Azure.ServiceBus via code. I see there was a NamespaceManager object in Microsoft.ServiceBus, but I can't find anything for the newer Azure namespace. I am using .NET Core.

Has this yet to be implemented? Or did I just not look hard enough?

If this isn't possible, is there a way to create a filter on SubscriptionClient()?

Thank you!

Andy
  • 12,859
  • 5
  • 41
  • 56

1 Answers1

5

They changed it all around in .NET Standard. You should be able to do this using the Microsoft.Azure.Management.ServiceBus nuget library. More info found here.

Here is a sample project for CRUD operations on ServiceBus resources.

Andy
  • 12,859
  • 5
  • 41
  • 56