summaryrefslogtreecommitdiff
path: root/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2008-11-12 14:25:03 +0000
committerArnaud Simon <arnaudsimon@apache.org>2008-11-12 14:25:03 +0000
commitdb2ca04e7a888289ac0f59537dcb6833cb7341da (patch)
treed5fde9e9a5ec3df30dc3d1e6254c35a46acfae72 /dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
parent72923c235672cb67f2789a9375ec575bcd7b3614 (diff)
downloadqpid-python-db2ca04e7a888289ac0f59537dcb6833cb7341da.tar.gz
Qpid-1146: Added doc + samples
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@713378 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs')
-rw-r--r--dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs b/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
index baed00b03a..d77f3761a8 100644
--- a/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
+++ b/dotnet/client-010/addins/ExcelAddIn/ExcelAddIn.cs
@@ -250,8 +250,7 @@ namespace ExcelAddIn
byte[] body = new byte[m.Body.Length - m.Body.Position];
reader.Read(body, 0, body.Length);
ASCIIEncoding enc = new ASCIIEncoding();
- res = enc.GetString(body);
- res = res + " price: " + m.ApplicationHeaders["price"];
+ res = enc.GetString(body);
return res;
}