@@ -337,10 +337,9 @@ parameter concerned:
337
337
void _Private_BasicConsume(...,
338
338
bool exclusive,
339
339
bool nowait,
340
- [AmqpFieldMapping(
341
- "RabbitMQ.Client.Framing.v0_8qpid",
342
- "arguments")]
343
- IDictionary filter);
340
+ [AmqpFieldMapping("RabbitMQ.Client.Framing.v0_9",
341
+ "filter")]
342
+ IDictionary arguments);
344
343
345
344
The parameter to the attribute specifies the specification version to
346
345
which the attribute should apply, or null if it should apply to any
@@ -562,14 +561,14 @@ QueueUnbind.
562
561
bool exclusive,
563
562
bool nowait,
564
563
[AmqpUnsupported("RabbitMQ.Client.Framing.v0_8")]
565
- [AmqpFieldMapping("RabbitMQ.Client.Framing.v0_8qpid ",
566
- "arguments ")]
567
- IDictionary filter );
568
-
569
- In the example above, the "filter " parameter is unsupported in
570
- standard 0-8, and in QPid-specific 0-8 it is named "arguments " instead
571
- of "filter ". In all other implementations (currently only 0-9) , it is
572
- assumed to be supported and named "filter ".
564
+ [AmqpFieldMapping("RabbitMQ.Client.Framing.v0_9 ",
565
+ "filter ")]
566
+ IDictionary arguments );
567
+
568
+ In the example above, the "arguments " parameter is unsupported in
569
+ standard 0-8, and in 0-9 t is named "filter " instead of
570
+ "arguments ". In all other implementations, it is assumed to be
571
+ supported and named "arguments ".
573
572
574
573
The parameter to the attribute specifies the specification version to
575
574
which the attribute should apply, or null if it should apply to any
0 commit comments