summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Common/Framing/AMQFrame.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dotnet/Qpid.Common/Framing/AMQFrame.cs')
-rw-r--r--dotnet/Qpid.Common/Framing/AMQFrame.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/dotnet/Qpid.Common/Framing/AMQFrame.cs b/dotnet/Qpid.Common/Framing/AMQFrame.cs
index 2708c331b3..9652cdfabc 100644
--- a/dotnet/Qpid.Common/Framing/AMQFrame.cs
+++ b/dotnet/Qpid.Common/Framing/AMQFrame.cs
@@ -74,12 +74,12 @@ namespace Qpid.Framing
public void WritePayload(ByteBuffer buffer)
{
- buffer.Put(_bodyFrame.BodyType);
+ buffer.put(_bodyFrame.BodyType);
// TODO: how does channel get populated
- buffer.Put(_channel);
- buffer.Put(_bodyFrame.Size);
+ buffer.put(_channel);
+ buffer.put(_bodyFrame.Size);
_bodyFrame.WritePayload(buffer);
- buffer.Put((byte) 0xCE);
+ buffer.put((byte) 0xCE);
}
#endregion