在 Azure.Messaging.ServiceBus 中使用主题过滤器
Using Topic Filters in Azure.Messaging.ServiceBus
此 this documentation 描述了主题过滤器的概念,但我在新的 Azure.Messaging.ServiceBus
中看不到等效项。以前的方式是这样的:
var filter = new CorrelationFilter();
filter.To = "test";
var ruleDescription = new RuleDescription("rulename", filter);
await subscriptionClient.AddRuleAsync(ruleDescription);
请有人指点我文档,或就新 SDK 如何处理此问题提供一些指导?
Gaurav Mantri 的评论是正确的;主题过滤器和其他资源管理是使用 Azure.Messaging.ServiceBus
包中的 ServiceBusAdministrationClient
完成的。
this sample and there is a dedicated sample available that demonstrates working with topic filters. The topic filter sample can also be downloaded directly through the MS Docs 站点介绍了管理客户端的一般用途。
此 this documentation 描述了主题过滤器的概念,但我在新的 Azure.Messaging.ServiceBus
中看不到等效项。以前的方式是这样的:
var filter = new CorrelationFilter();
filter.To = "test";
var ruleDescription = new RuleDescription("rulename", filter);
await subscriptionClient.AddRuleAsync(ruleDescription);
请有人指点我文档,或就新 SDK 如何处理此问题提供一些指导?
Gaurav Mantri 的评论是正确的;主题过滤器和其他资源管理是使用 Azure.Messaging.ServiceBus
包中的 ServiceBusAdministrationClient
完成的。
this sample and there is a dedicated sample available that demonstrates working with topic filters. The topic filter sample can also be downloaded directly through the MS Docs 站点介绍了管理客户端的一般用途。