@@ -657,7 +657,7 @@ public void _Private_ExchangeBind(string destination,
657
657
bool nowait ,
658
658
IDictionary < string , object > arguments )
659
659
{
660
- _Private_ExchangeBind ( destination , source , routingKey ,
660
+ m_delegate . _Private_ExchangeBind ( destination , source , routingKey ,
661
661
nowait , arguments ) ;
662
662
}
663
663
@@ -670,7 +670,7 @@ public void _Private_ExchangeDeclare(string exchange,
670
670
bool nowait ,
671
671
IDictionary < string , object > arguments )
672
672
{
673
- _Private_ExchangeDeclare ( exchange , type , passive ,
673
+ m_delegate . _Private_ExchangeDeclare ( exchange , type , passive ,
674
674
durable , autoDelete , @internal ,
675
675
nowait , arguments ) ;
676
676
}
@@ -679,7 +679,7 @@ public void _Private_ExchangeDelete(string exchange,
679
679
bool ifUnused ,
680
680
bool nowait )
681
681
{
682
- _Private_ExchangeDelete ( exchange , ifUnused , nowait ) ;
682
+ m_delegate . _Private_ExchangeDelete ( exchange , ifUnused , nowait ) ;
683
683
}
684
684
685
685
public void _Private_ExchangeUnbind ( string destination ,
@@ -698,7 +698,7 @@ public void _Private_QueueBind(string queue,
698
698
bool nowait ,
699
699
IDictionary < string , object > arguments )
700
700
{
701
- _Private_QueueBind ( queue , exchange , routingKey ,
701
+ m_delegate . _Private_QueueBind ( queue , exchange , routingKey ,
702
702
nowait , arguments ) ;
703
703
}
704
704
0 commit comments