Both:
queueClient.PeekBatch(Convert.ToInt32(60));
And this:
messageReceiver.PeekBatch(Convert.ToInt32(60));
Does not work "completely." They return a smaller amount, and instead I have to pump these methods in a loop to the number of messages that I know we use:
var count = queue.MessageCountDetails.ActiveMessageCount;
What settings do I not have, why is Azure so mean and does not allow me to retreat, all 60 messages - I know what is - right away?
source
share