How to set Azure WebJob queue name at runtime?

This can now be done. Simply create an INameResolver to allow you to resolve any string surrounded in % (percent) signs. For example, if this is your function with a queue name specified: public static void WriteLog([QueueTrigger(“%logqueue%”)] string logMessage) { Console.WriteLine(logMessage); } Notice how there are % (percent) signs around the string logqueue. This means … Read more