I wonder is there any way to check service bus topic empty or not
I tried with nuget WindowsAzure.ServiceBus
and below sample code.
In this nuget I do not get ITopicClient
:(
var topicClient = TopicClient(); // we can not create object
var topicPeek = topicClient.Peek();
TopicDescription topicDescription = new TopicDescription(topicName);
var topicSize = topicDescription.SizeInBytes;
any way to do so?