<div>my question is regarding deleting a queue and my consumer app is in .net:</div><div><br></div><div><br></div><div>private EventingBasicConsumer _consumer =  new EventingBasicConsumer();</div><div>private IModel _channel = _rabbitConnection.CreateModel();</div>
<div>   </div><div><pre style="font-family:Monaco;font-size:12px;background-color:white;background-repeat:initial initial">_channel.QueueDeclare(queue, <span style="color:blue">true</span>, <span style="color:blue">false</span>, <span style="color:blue">false</span>, args);
            </pre><pre style="font-family:Monaco;font-size:12px;background-color:white;background-repeat:initial initial"><span style="background-color:transparent">_consumer.Received += consumer_Received;</span></pre></div>
<div>_consumer.Shutdown += consumer_Shutdown;</div><div><br></div><div>_channel.BasicConsume(queueName, true, _consumer);</div><div>                 </div><div>// if the queue is deleted, i was expecting that consumer would get shutdown event, like if we shutdown the rabbitmq server.</div>
<div>// is it possible by setting any parameter ? any help</div><div><br></div>-- <br>Sujan<br>