blob: ed6ef0618e1cc57c4b99239c74e87b7cae581db7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
namespace OpenSim.Framework.Communications.XMPP
{
public class Stanza
{
public string localName = String.Empty;
public JId to;
public JId from;
public string id;
public string lang;
public string nodeName;
public Stanza(XmlNode node, Object defaults, bool hasID)
{
}
//public virtual XmlElement getNode()
//{
//return new XmlElement();
//}
public virtual string generateId()
{
return "";
}
}
}
|