diff options
Diffstat (limited to 'dotnet/Qpid.Common/Framing/ContentHeaderBody.cs')
-rw-r--r-- | dotnet/Qpid.Common/Framing/ContentHeaderBody.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dotnet/Qpid.Common/Framing/ContentHeaderBody.cs b/dotnet/Qpid.Common/Framing/ContentHeaderBody.cs index a3f71c41aa..f72f6208bc 100644 --- a/dotnet/Qpid.Common/Framing/ContentHeaderBody.cs +++ b/dotnet/Qpid.Common/Framing/ContentHeaderBody.cs @@ -73,10 +73,10 @@ namespace Qpid.Framing public void WritePayload(ByteBuffer buffer) { - buffer.Put(ClassId); - buffer.Put(Weight); - buffer.Put(BodySize); - buffer.Put(Properties.PropertyFlags); + buffer.put(ClassId); + buffer.put(Weight); + buffer.put(BodySize); + buffer.put(Properties.PropertyFlags); Properties.WritePropertyListPayload(buffer); } |