Skip to content

Commit 2f3c310

Browse files
author
Emile Joubert
committed
Mention 0-9-1 in code docs
1 parent 23cee4f commit 2f3c310

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

projects/client/RabbitMQ.Client/src/client/api/IBasicProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace RabbitMQ.Client
4545
{
4646
///<summary>Common AMQP Basic content-class headers interface,
4747
///spanning the union of the functionality offered by versions
48-
///0-8, 0-8qpid and 0-9 (without WIP) of AMQP.</summary>
48+
///0-8, 0-8qpid, 0-9 and 0-9-1 of AMQP.</summary>
4949
///<remarks>
5050
///<para>
5151
///The specification code generator provides

projects/client/RabbitMQ.Client/src/client/api/IFileProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace RabbitMQ.Client
4545
{
4646
///<summary>Common AMQP File content-class headers interface,
4747
///spanning the union of the functionality offered by versions
48-
///0-8, 0-8qpid and 0-9 (without WIP) of AMQP.</summary>
48+
///0-8, 0-8qpid, 0-9 and 0-9-1 of AMQP.</summary>
4949
///<remarks>
5050
///<para>
5151
///The specification code generator provides

projects/client/RabbitMQ.Client/src/client/api/IModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
namespace RabbitMQ.Client
4747
{
4848
///<summary>Common AMQP model, spanning the union of the
49-
///functionality offered by versions 0-8, 0-8qpid, and 0-9
50-
///(without WIP) of AMQP.</summary>
49+
///functionality offered by versions 0-8, 0-8qpid, 0-9 and
50+
///0-9-1 of AMQP.</summary>
5151
///<remarks>
5252
/// Extends the IDisposable interface, so that the "using"
5353
/// statement can be used to scope the lifetime of a channel when

projects/client/RabbitMQ.Client/src/client/api/IStreamProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace RabbitMQ.Client
4545
{
4646
///<summary>Common AMQP Stream content-class headers interface,
4747
///spanning the union of the functionality offered by versions
48-
///0-8, 0-8qpid and 0-9 (without WIP) of AMQP.</summary>
48+
///0-8, 0-8qpid, 0-9 and 0-9-1 of AMQP.</summary>
4949
///<remarks>
5050
///<para>
5151
///The specification code generator provides

projects/client/RabbitMQ.Client/src/client/api/Protocols.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,14 @@ public static IProtocol AMQP_0_9
9090
get { return new RabbitMQ.Client.Framing.v0_9.Protocol(); }
9191
}
9292

93+
///<summary>Protocol version 0-9-1 as modified by VMWare.</summary>
9394
public static IProtocol AMQP_0_9_1
9495
{
9596
get { return new RabbitMQ.Client.Framing.v0_9_1.Protocol(); }
9697
}
9798

9899
///<summary>Retrieve the current default protocol variant
99-
///(currently AMQP_0_8)</summary>
100+
///(currently AMQP_0_9_1)</summary>
100101
public static IProtocol DefaultProtocol
101102
{
102103
get { return AMQP_0_9_1; }

0 commit comments

Comments
 (0)