@@ -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
@@ -533,10 +532,10 @@ asynchronous event handler.
533
532
534
533
*** Overriding behaviour for particular specification versions
535
534
536
- In some versions of the specification, a particular field or method
537
- may not be supported. Methods and parameters can be marked to cause
538
- particular implementations to complain if these features are used by
539
- applications:
535
+ In some versions of the specification, a particular field, method or
536
+ content header may not be supported. Methods and parameters can be
537
+ marked to cause particular implementations to complain if these
538
+ features are used by applications:
540
539
541
540
@code java
542
541
[AmqpUnsupported("RabbitMQ.Client.Framing.v0_8qpid")]
@@ -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