@@ -337,10 +337,9 @@ parameter concerned:
337337 void _Private_BasicConsume(...,
338338 bool exclusive,
339339 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);
344343
345344The parameter to the attribute specifies the specification version to
346345which the attribute should apply, or null if it should apply to any
@@ -533,10 +532,10 @@ asynchronous event handler.
533532
534533*** Overriding behaviour for particular specification versions
535534
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:
540539
541540@code java
542541 [AmqpUnsupported("RabbitMQ.Client.Framing.v0_8qpid")]
@@ -562,14 +561,14 @@ QueueUnbind.
562561 bool exclusive,
563562 bool nowait,
564563 [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 ".
573572
574573The parameter to the attribute specifies the specification version to
575574which the attribute should apply, or null if it should apply to any
0 commit comments