diff options
| author | Robert Greig <rgreig@apache.org> | 2007-02-13 16:56:03 +0000 |
|---|---|---|
| committer | Robert Greig <rgreig@apache.org> | 2007-02-13 16:56:03 +0000 |
| commit | f1e37d08908f9dc1aa2728c8379091846bccbf13 (patch) | |
| tree | c0a6fdd4b35416c552a8b5bc7847c1a85b3b6303 /dotnet/Qpid.Buffer/FixedByteBuffer.cs | |
| parent | cd7311844c3058bcc7a0a73e26d31570da63bed7 (diff) | |
| download | qpid-python-f1e37d08908f9dc1aa2728c8379091846bccbf13.tar.gz | |
(Path submitted by Tomas Restrepo) Qpid-336 Field table updated to match Java client.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@507096 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Buffer/FixedByteBuffer.cs')
| -rw-r--r-- | dotnet/Qpid.Buffer/FixedByteBuffer.cs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/dotnet/Qpid.Buffer/FixedByteBuffer.cs b/dotnet/Qpid.Buffer/FixedByteBuffer.cs index 39a17a6fa7..d2f3ca8a3c 100644 --- a/dotnet/Qpid.Buffer/FixedByteBuffer.cs +++ b/dotnet/Qpid.Buffer/FixedByteBuffer.cs @@ -211,7 +211,7 @@ namespace Qpid.Buffer public short getShort() { - throw new NotImplementedException(); + return _buf.GetShort(); } public short getShort(int index) @@ -221,7 +221,7 @@ namespace Qpid.Buffer public void putShort(short value) { - throw new NotImplementedException(); + _buf.Put(value); } public void putShort(int index, short value) @@ -231,7 +231,7 @@ namespace Qpid.Buffer public int getInt() { - throw new NotImplementedException(); + return _buf.GetInt(); } public int getInt(int index) @@ -241,7 +241,7 @@ namespace Qpid.Buffer public void putInt(int value) { - throw new NotImplementedException(); + _buf.Put(value); } public void putInt(int index, int value) @@ -261,7 +261,7 @@ namespace Qpid.Buffer public long getLong() { - throw new NotImplementedException(); + return _buf.GetLong(); } public long getLong(int index) @@ -271,7 +271,7 @@ namespace Qpid.Buffer public void putLong(long value) { - throw new NotImplementedException(); + _buf.Put(value); } public void putLong(int index, long value) @@ -286,17 +286,17 @@ namespace Qpid.Buffer public float getFloat() { - throw new NotImplementedException(); + return _buf.GetFloat(); } public float getFloat(int index) { - throw new NotImplementedException(); + throw new NotImplementedException(); } public void putFloat(float value) { - throw new NotImplementedException(); + _buf.Put(value); } public void putFloat(int index, float value) @@ -306,7 +306,7 @@ namespace Qpid.Buffer public double getDouble() { - throw new NotImplementedException(); + return _buf.GetDouble(); } public double getDouble(int index) @@ -316,7 +316,7 @@ namespace Qpid.Buffer public void putDouble(double value) { - throw new NotImplementedException(); + _buf.Put(value); } public void putDouble(int index, double value) |
