Hy,
is it possible to receive the messages from the service bus without deleting them?
I found the peek() function in the docs but I can't use it with the Windows Service Bus 1.0 API. I tried the following:
//Creates a new copy of SubscriptionClient with specified name and topic path. SubscriptionClient subscriptionClient = messagingFactory.CreateSubscriptionClient(topicName, subscriptionName);
But there is only a receive function available which always deletes the messages. In the Service Bus Explorer there is a Option called "Peek all messages" which didn't deletes the messages. Does anybody know how he implements that?
I found a peek function in the docs but I can't use it:
http://msdn.microsoft.com/de-de/library/windowsazure/microsoft.servicebus.messaging.subscriptionclient.aspx
Best regards