November 2018
Intermediate to advanced
424 pages
10h 55m
English
Perform the following steps:

using System; public static void Run(string myQueueItem, ILogger log) { if(Convert.ToInt32(myQueueItem)>50) { throw new Exception(myQueueItem); } else { log.LogInformation($"C# Queue trigger function processed: {myQueueItem}"); } }
The preceding queue trigger logs a message with the content of the queue (it's just a numerical ...