I have a webjob application to process a ServiceBus queue that works fine, with the following method:
public static void ProcessQueueMessage([ServiceBusTrigger("myQueueName")] BrokeredMessage message, TextWriter log)
However, I would like to be able to change the queue name without recompiling, for example, according to the configuration setting, can this be done?
source
share