- Let's execute the Console Application by pressing Ctrl + F5, navigate to the Azure Storage Explorer, and view the Queue contents.
- In just a few moments, you should start viewing messages in the myqueuemessages Queue, as shown here. Currently, both Azure Management portal and the Storage Explorer display the first 32 messages. You need to use the C# storage SDK to view all the messages in the Queue.
Don't get surprised if you notice that your messages in myqueuemessage are vanishing. It's expected that as soon as a message is read successfully, the message gets deleted from the Queue.
- As shown ...