public XmlNode addNodeToNode(XmlNode nodeFather, cXmlProperty xProperty) { XmlNode node = m_domDoc.CreateNode(XmlNodeType.Element, xProperty.getName(), ""); nodeFather.AppendChild(node); return(node); }
public bool addBinaryPropertyToNode(XmlNode node, cXmlProperty xProperty) { XmlAttribute attr = m_domDoc.CreateAttribute(xProperty.getName()); attr.Value = Convert.ToBase64String(xProperty.getBinaryValue()); node.Attributes.Append(attr); return(true); }
public bool addPropertyToNode(XmlNode node, cXmlProperty xProperty) { XmlAttribute attr = m_domDoc.CreateAttribute(xProperty.getName()); attr.Value = xProperty.getValueString(eTypes.eVariant); node.Attributes.Append(attr); return(true); }
public XmlNode addNodeToNode(XmlNode nodeFather, cXmlProperty xProperty) { XmlNode node = m_domDoc.CreateNode(XmlNodeType.Element, xProperty.getName(), ""); nodeFather.AppendChild(node); return node; }
public bool addBinaryPropertyToNode(XmlNode node, cXmlProperty xProperty) { XmlAttribute attr = m_domDoc.CreateAttribute(xProperty.getName()); attr.Value = Convert.ToBase64String(xProperty.getBinaryValue()); node.Attributes.Append(attr); return true; }
public bool addPropertyToNode(XmlNode node, cXmlProperty xProperty) { XmlAttribute attr = m_domDoc.CreateAttribute(xProperty.getName()); attr.Value = xProperty.getValueString(eTypes.eVariant); node.Attributes.Append(attr); return true; }