Subject: How can I post my Debug XML
When you subscribe to the OnReadXml and OnWriteXml handlers you can trace the debug Xml.
Write this data to the Debug Console, your logger or a file and post it with your thread when required.
You can also attach files to your posts.
Write this data to the Debug Console, your logger or a file and post it with your thread when required.
You can also attach files to your posts.
- private void XmppCon_OnReadXml(object sender, string xml)
- {
- rtfDebug.AppendText("Recv: " + xml);
- }
- private void XmppCon_OnWriteXml(object sender, string xml)
- {
- rtfDebug.AppendText("Send: " + xml);
- }
This post was edited on 2013-07-18, 23:43 by Alex.