gpt4 book ai didi

c# - 使用 Microsoft.Azure.Management.ServiceBus 获取队列消息计数

转载 作者:行者123 更新时间:2023-12-02 07:34:49 26 4
gpt4 key购买 nike

我需要一个有关如何在服务总线队列上进行 CRUD 操作的示例。

我实际上需要 Microsoft.Azure.Management.ServiceBus.SBQueue 类的实例,以便我可以计算该队列中的消息。

最佳答案

较旧的方法是使用 ManagementClient

var managementClient = new ManagementClient(connectionString);
var queueRuntimeInfo = await managementClient.GetQueueRuntimeInfoAsync(queueName);
Console.WriteLine(queueRuntimeInfo.MessageCount);

更现代的方法是使用 ServiceBusAdministrationClient

var client = new ServiceBusAdministrationClient(connectionString);
var runtimeProperties = await client.GetQueueRuntimePropertiesAsync(queueName);
Console.WriteLine(runtimeProperties .ActiveMessageCount);

关于c# - 使用 Microsoft.Azure.Management.ServiceBus 获取队列消息计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69706024/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com