Exemplo n.º 1
0
 internal override void SetXML(XmlElement xml, BaseClassIfc host, Dictionary <int, XmlElement> processed)
 {
     base.SetXML(xml, host, processed);
     setAttribute(xml, "TypeIdentifier", TypeIdentifier);
     setAttribute(xml, "AttributeIdentifier", AttributeIdentifier);
     setAttribute(xml, "InstanceName", InstanceName);
     if (mListPositions.Count > 0)
     {
         xml.SetAttribute("ListPositions", String.Join(" ", mListPositions));
     }
     if (mInnerReference > 0)
     {
         xml.AppendChild(InnerReference.GetXML(xml.OwnerDocument, "InnerReference", this, processed));
     }
 }