In the previous blog post, we explored how to Enqueue and Dequeue items from Azure Storage. Let us continue our exploration of Queue storage and write code to "peek" from a queue. Peek/Retrieve From Queue For retrieve from Queue, you could use the CloudQueue.PeekMessageAsync() method. For example, [FunctionName("PeekItemFromQueue")] public static async Task<IActionResult> PeekItemFromQueue( [HttpTrigger(AuthorizationLevel.Anonymous, "post", Route = … Continue reading CRUD Operations with Azure Queue Storage in an Azure Function – Retrieve