Determining how many messages are on the Azure Service Bus Queue

后端 未结 9 824
难免孤独
难免孤独 2020-12-09 15:52

I know there is a way to determine the number of messages (or approximate number) in the Azure Queue (Store Account); however is there a way to query for the number of pendi

9条回答
  •  有刺的猬
    2020-12-09 16:32

    var nsmgr = Microsoft.ServiceBus.NamespaceManager.CreateFromConnectionString(connectionString);
    long count = nsmgr.GetQueue(queueName).MessageCount;
    

提交回复
热议问题