File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed
projects/client/RabbitMQ.Client/src/client/api Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ namespace RabbitMQ.Client
45
45
{
46
46
///<summary>Common AMQP Basic content-class headers interface,
47
47
///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>
49
49
///<remarks>
50
50
///<para>
51
51
///The specification code generator provides
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ namespace RabbitMQ.Client
45
45
{
46
46
///<summary>Common AMQP File content-class headers interface,
47
47
///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>
49
49
///<remarks>
50
50
///<para>
51
51
///The specification code generator provides
Original file line number Diff line number Diff line change 46
46
namespace RabbitMQ . Client
47
47
{
48
48
///<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>
51
51
///<remarks>
52
52
/// Extends the IDisposable interface, so that the "using"
53
53
/// statement can be used to scope the lifetime of a channel when
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ namespace RabbitMQ.Client
45
45
{
46
46
///<summary>Common AMQP Stream content-class headers interface,
47
47
///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>
49
49
///<remarks>
50
50
///<para>
51
51
///The specification code generator provides
Original file line number Diff line number Diff line change @@ -90,13 +90,14 @@ public static IProtocol AMQP_0_9
90
90
get { return new RabbitMQ . Client . Framing . v0_9 . Protocol ( ) ; }
91
91
}
92
92
93
+ ///<summary>Protocol version 0-9-1 as modified by VMWare.</summary>
93
94
public static IProtocol AMQP_0_9_1
94
95
{
95
96
get { return new RabbitMQ . Client . Framing . v0_9_1 . Protocol ( ) ; }
96
97
}
97
98
98
99
///<summary>Retrieve the current default protocol variant
99
- ///(currently AMQP_0_8 )</summary>
100
+ ///(currently AMQP_0_9_1 )</summary>
100
101
public static IProtocol DefaultProtocol
101
102
{
102
103
get { return AMQP_0_9_1 ; }
You can’t perform that action at this time.
0 commit comments