diff options
Diffstat (limited to 'wcf/samples/Channel/HelloWorld')
-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();
}
}
}
|