Skip to main content
 首页 » 编程设计

azure之确定 Azure 服务总线队列上有多少消息

2024年11月24日35txw1958

我知道有一种方法可以确定Azure队列(商店帐户)中的消息数量(或近似数量);但是,有没有办法查询 Azure 服务总线队列上待处理消息的数量?

请您参考如下方法:

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