diff --git a/projects/client/RabbitMQ.Client/src/client/impl/AutorecoveringModel.cs b/projects/client/RabbitMQ.Client/src/client/impl/AutorecoveringModel.cs index e37a454eca..a615582265 100644 --- a/projects/client/RabbitMQ.Client/src/client/impl/AutorecoveringModel.cs +++ b/projects/client/RabbitMQ.Client/src/client/impl/AutorecoveringModel.cs @@ -657,7 +657,7 @@ public void _Private_ExchangeBind(string destination, bool nowait, IDictionary arguments) { - _Private_ExchangeBind(destination, source, routingKey, + m_delegate._Private_ExchangeBind(destination, source, routingKey, nowait, arguments); } @@ -670,7 +670,7 @@ public void _Private_ExchangeDeclare(string exchange, bool nowait, IDictionary arguments) { - _Private_ExchangeDeclare(exchange, type, passive, + m_delegate._Private_ExchangeDeclare(exchange, type, passive, durable, autoDelete, @internal, nowait, arguments); } @@ -679,7 +679,7 @@ public void _Private_ExchangeDelete(string exchange, bool ifUnused, bool nowait) { - _Private_ExchangeDelete(exchange, ifUnused, nowait); + m_delegate._Private_ExchangeDelete(exchange, ifUnused, nowait); } public void _Private_ExchangeUnbind(string destination, @@ -698,7 +698,7 @@ public void _Private_QueueBind(string queue, bool nowait, IDictionary arguments) { - _Private_QueueBind(queue, exchange, routingKey, + m_delegate._Private_QueueBind(queue, exchange, routingKey, nowait, arguments); }