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 addBinaryPropertyToNode(XmlNode node, cXmlProperty xProperty) { XmlAttribute attr = m_domDoc.CreateAttribute(xProperty.getName()); attr.Value = Convert.ToBase64String(xProperty.getBinaryValue()); node.Attributes.Append(attr); return true; }