summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Common/Framing/ContentBody.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dotnet/Qpid.Common/Framing/ContentBody.cs')
-rw-r--r--dotnet/Qpid.Common/Framing/ContentBody.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotnet/Qpid.Common/Framing/ContentBody.cs b/dotnet/Qpid.Common/Framing/ContentBody.cs
index e8bc003f65..4e7ae2019a 100644
--- a/dotnet/Qpid.Common/Framing/ContentBody.cs
+++ b/dotnet/Qpid.Common/Framing/ContentBody.cs
@@ -54,7 +54,7 @@ namespace Qpid.Framing
{
if (Payload != null)
{
- buffer.Put(Payload);
+ buffer.put(Payload);
}
}
@@ -63,7 +63,7 @@ namespace Qpid.Framing
if (size > 0)
{
Payload = new byte[size];
- buffer.Get(Payload);
+ buffer.get(Payload);
}
}