简体   繁体   中英

How to create queue in service bus in azure by application

Is it possible to create a queue on the azure service bus by the sdk?

Same as RabbitMQ

channel.QueueDeclare(queue: "" ....

Have a look at the ServiceBusAdministrationClient and its CreateQueueAsync method .

Creates a new queue in the service namespace with the given name.

var administrationClient = new ServiceBusAdministrationClient("ServiceBusConnectionString");
await administrationClient.CreateQueueAsync(queueName);

Make sure the connection string has manage rights.

Updated to target the current generation of packages thanks to Jesse Squire's comment below

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM