aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs
diff options
context:
space:
mode:
authorDr Scofield2008-06-04 18:09:55 +0000
committerDr Scofield2008-06-04 18:09:55 +0000
commitcaee0288fbf5fdc2abfbaa0890d3de62110de324 (patch)
tree33fb76b77da568838eda6651f3a715ebfb0d1ab7 /OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs
parentchange clientCircuits_reverse to a synchronized hash table. This (diff)
downloadopensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.zip
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.gz
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.bz2
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.xz
* adding XmppPresenceStanza and deserialization/reification support
having reached the intermediate level of .NET's XmlSudoku, i've now figured out how to do deserialization using different XmlSerializers (this stuff begins to grow on me, sigh). [still not used code, work-in-progress] * adding convenience property on OSHttpRequest.cs (from awebb)
Diffstat (limited to 'OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs')
-rw-r--r--OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs b/OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs
index e80c0aa..b221459 100644
--- a/OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs
+++ b/OpenSim/Framework/Communications/XMPP/XmppMessageStanza.cs
@@ -59,6 +59,11 @@ namespace OpenSim.Framework.Communications.XMPP
59 { 59 {
60 Text = message; 60 Text = message;
61 } 61 }
62
63 public string ToString()
64 {
65 return Text;
66 }
62 } 67 }
63 68
64 [XmlRoot("message")] 69 [XmlRoot("message")]