有没有办法以编程方式创建 Azure ServiceBus 主题

Is there a way to programmatically create an Azure ServiceBus Topic

我正在尝试通过代码在 Microsoft.Azure.ServiceBus 中创建一个 Topic。我看到 Microsoft.ServiceBus 中有一个 NamespaceManager 对象,但我找不到更新的 Azure 命名空间的任何内容。我正在使用 .NET Core。

这还没有实现吗?还是我看起来不够努力?

如果这不可能,是否可以在 SubscriptionClient() 上创建过滤器?

谢谢!

他们在 .NET Standard 中对其进行了全面更改。您应该能够使用 Microsoft.Azure.Management.ServiceBus nuget 库执行此操作。找到更多信息 here

这里是 sample project 用于 ServiceBus 资源上的 CRUD 操作。