When you post a message to an Azure Queue how do you tell if the message was successfully posted?
When Using the following code:
queue.AddMessage(message);
We have found that in some situations the message is not posted to the queue. Looking at the documentation I can see that there is no exception thrown if the posting of the message was unsuccessful. What is the best way to check if the message posting failed?