0

I am trying to write simple console application which can automatically Add or Delete any Azure Service Bus Topics and subscription from Service Bus explorer 3.0.4 but no luck so far.

Code is in C# / Visual Studio 2015 about service and messaging and pubsub is creating Azure token Key automatically.

Any help is highly appreciated. Thanks in advance.

Joy1979
  • 599
  • 5
  • 12
  • 23

1 Answers1

0

Add or Delete any Azure Service Bus Topics and subscription from Service Bus explorer 3.0.4

If understood correctly, you mean delete from Azure Service Bus. SB Explorer is just a tool to manage ASB entities.

You can use the current client WindowsAzure.ServiceBus or Service Bus management libraries that is still in preview. The latter will require AAD and is documented here. The client would require a token.

Sean Feldman
  • 23,443
  • 7
  • 55
  • 80