.net - How to read the content of service bus messages only for monitoring -


is there way read messages in queue or topics without pulling or changing behavior (just monitoring)?

azure service bus allows peek messages.

for example, can use queueclient.peekasync() to peek messages queue. there's equivalent topics , subscriptions well.

in case don't need differentiate between messages queues , subscriptions, there's messagereceiver.peekasync() option.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

c# - Json.Net Serialize String from URI -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -