Skip to content

Commit de12d54

Browse files
committed
update docs
1 parent cc72470 commit de12d54

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

docs/wikipages/data.ApiGen.txt

100755100644
Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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

345344
The parameter to the attribute specifies the specification version to
346345
which the attribute should apply, or null if it should apply to any
@@ -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

574573
The parameter to the attribute specifies the specification version to
575574
which the attribute should apply, or null if it should apply to any

0 commit comments

Comments
 (0)