Closed maitrefou974 closed 3 months ago
Is it possible to move some messages from a topic / queue to its dead-letter queue ?
No. Messages are moved to the DLQ by the broker (service side), not manually.
You can receive a message and dead-letter it, but have to receive it first. See documentation for this option here-system-string-system-string-system-threading-cancellationtoken)).
I know how to do it in code, I wanted to know if there is a user button on service bus explorer to do it.
Recieved and delete a single message from DLQ is the only thing I can think of that comes the closest to this.
Hi, I don't know if the feature exists... So I ask the question : Is it possible to move some messages from a topic / queue to its dead-letter queue ?
In code would be like if we consumed the messages in a loop and returned a DeadLetterMessage action for each selected message.
Thank you!