public static void AddMD5Hash(this XElement node, string values)
        {
            string md5 = XmlDoc.CalculateMD5Hash(values);

            node.Add(new XElement("Hash", md5));
        }
Exemple #2
0
        public static void AddMD5Hash(this XElement node, Boolean removePreValIds)
        {
            string md5 = XmlDoc.CalculateMD5Hash(node, removePreValIds);

            node.Add(new XElement("Hash", md5));
        }