diff options
| author | Clifford Allan Jansen <cliffjansen@apache.org> | 2012-11-05 22:00:19 +0000 |
|---|---|---|
| committer | Clifford Allan Jansen <cliffjansen@apache.org> | 2012-11-05 22:00:19 +0000 |
| commit | 2fc14993a7d78002bb6992f6837118b16edf4c83 (patch) | |
| tree | 9b414e492525fe81d4130c423828d16b16c84724 | |
| parent | 7ce7d0773c1afaaeb93d7ece9c39e692998f40c0 (diff) | |
| download | qpid-python-2fc14993a7d78002bb6992f6837118b16edf4c83.tar.gz | |
QPID-4400: missing WriteEndElement in binary content writer
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1405981 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | wcf/samples/Channel/HelloWorld/HelloWorld.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wcf/samples/Channel/HelloWorld/HelloWorld.cs b/wcf/samples/Channel/HelloWorld/HelloWorld.cs index 0845e42c8a..88cb11038d 100644 --- a/wcf/samples/Channel/HelloWorld/HelloWorld.cs +++ b/wcf/samples/Channel/HelloWorld/HelloWorld.cs @@ -113,6 +113,7 @@ namespace Apache.Qpid.Samples.Channel.HelloWorld byte[] binaryContent = Encoding.UTF8.GetBytes("Hello world!");
writer.WriteStartElement("Binary");
writer.WriteBase64(binaryContent, 0, binaryContent.Length);
+ writer.WriteEndElement();
}
}
}
|
