如何再生servicebus队列键
我需要定期重新生成ServiceBus初级和次要键。我能够在.NET框架中执行此操作,但是我需要在.NET CORE或.NET 6中执行此操作,因为它将是带有计时器触发器的Azure函数。 我正在使用azure.messaging.servicebus,但是我找不到Microsoft.ServiceBus.Messaging中的相应方法....为了生成键或更新规则。 有人可以将我引导到文档或示例代码吗? 谢谢
I need to regenerate the ServiceBus primary and secondary keys on a periodic basis. I am able to do it in the .NET framework, but i need to do it in .NET Core or .NET 6 as it will be an Azure Function with a timer trigger.
I am using Azure.Messaging.ServiceBus, but I cannot find the corresponding methods that are in Microsoft.ServiceBus.Messaging.... in order to generate the keys nor to update the rules.
Can someone please direct me to the documentation or sample code?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用方法
recenerateKeySasync
在 microsoft.azure.management.servicebus.fluent 。它在名称空间级别重新生成键。另外,您可以使用下面的代码生成新密钥,
这是一个示例,您可以在其中找到 Azure Service Bus队列,带有ASP.NET Core Services 。
参考文献:
You can regenerate the keys using the method
RegenerateKeysAsync
which is available in Microsoft.Azure.Management.ServiceBus.Fluent. It regenerates the keys at namespace level.Alternatively, you can use below code to generate new key
Here is a sample where you can find Azure Service Bus Queues with ASP.NET Core Services.
REFERENCES: