1

I'm trying to find a code to read a message from Azure dead letter queue using MassTransit and print it in the console. Looking for the right class and method to do the job.

ash
  • 11
  • 1
  • Have you tried to change the queue name to below in this code : https://masstransit-project.com/usage/transports/azure-sb.html /$deadletterqueue or /Subscriptions//$deadletterqueue – MayankBargali Sep 22 '21 at 04:19

1 Answers1

0

Changing the queue name to below in this code should help you.

Reading from Deadletter queue : yourqueuename/$deadletterqueue

Reading from Deadletter topic subscription : yourtopicname/Subscriptions/yoursubscriptionname/$deadletterqueue

MayankBargali
  • 712
  • 5
  • 8