Exemple #1
0
 public override void _Private_BasicConsume(
   System.String @queue,
   System.String @consumerTag,
   System.Boolean @noLocal,
   System.Boolean @noAck,
   System.Boolean @exclusive,
   System.Boolean @nowait,
   System.Collections.IDictionary @filter)
 {
   BasicConsume __req = new BasicConsume();
   __req.m_queue = @queue;
   __req.m_consumerTag = @consumerTag;
   __req.m_noLocal = @noLocal;
   __req.m_noAck = @noAck;
   __req.m_exclusive = @exclusive;
   __req.m_nowait = @nowait;
   if (@filter != null) {
     throw new UnsupportedMethodFieldException("_Private_BasicConsume","filter");
   }
   ModelSend(__req,null,null);
 }
   public override void _Private_BasicConsume(
 string @queue,
 string @consumerTag,
 bool @noLocal,
 bool @noAck,
 bool @exclusive,
 bool @nowait,
 System.Collections.Generic.IDictionary<string, object> @arguments)
   {
       BasicConsume __req = new BasicConsume();
         __req.m_queue = @queue;
         __req.m_consumerTag = @consumerTag;
         __req.m_noLocal = @noLocal;
         __req.m_noAck = @noAck;
         __req.m_exclusive = @exclusive;
         __req.m_nowait = @nowait;
         if (@arguments != null) {
       throw new UnsupportedMethodFieldException("_Private_BasicConsume","arguments");
         }
         ModelSend(__req,null,null);
   }