diff options
Diffstat (limited to 'dotnet/Qpid.Common/Framing/AMQMethodBody.cs')
| -rw-r--r-- | dotnet/Qpid.Common/Framing/AMQMethodBody.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotnet/Qpid.Common/Framing/AMQMethodBody.cs b/dotnet/Qpid.Common/Framing/AMQMethodBody.cs index 804e6a4039..96e8e60be1 100644 --- a/dotnet/Qpid.Common/Framing/AMQMethodBody.cs +++ b/dotnet/Qpid.Common/Framing/AMQMethodBody.cs @@ -62,8 +62,8 @@ namespace Qpid.Framing public void WritePayload(ByteBuffer buffer) { - buffer.Put(Clazz); - buffer.Put(Method); + buffer.put(Clazz); + buffer.put(Method); WriteMethodPayload(buffer); } |
